(self, host, prog, vers, port)
| 289 | """Client using TCP to a specific port. |
| 290 | """ |
| 291 | def __init__(self, host, prog, vers, port): |
| 292 | Client.__init__(self, host, prog, vers, port) |
| 293 | self.connect() |
| 294 | |
| 295 | def connect(self): |
| 296 | self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |