(chan, data, method, sock, dstip)
| 532 | |
| 533 | |
| 534 | def udp_done(chan, data, method, sock, dstip): |
| 535 | (src, srcport, data) = data.split(b",", 2) |
| 536 | srcip = (src, int(srcport)) |
| 537 | debug3('doing send from %r to %r' % (srcip, dstip,)) |
| 538 | method.send_udp(sock, srcip, dstip, data) |
| 539 | |
| 540 | |
| 541 | def onaccept_udp(listener, method, mux, handlers): |
no test coverage detected