(family, ip, port)
| 580 | |
| 581 | |
| 582 | def connect_dst(family, ip, port): |
| 583 | debug2('Connecting to %s:%d' % (ip, port)) |
| 584 | outsock = socket.socket(family) |
| 585 | |
| 586 | return SockWrapper(outsock, outsock, |
| 587 | connect_to=(ip, port), |
| 588 | peername='%s:%d' % (ip, port)) |
| 589 | |
| 590 | |
| 591 | def runonce(handlers, mux): |
nothing calls this directly
no test coverage detected