(chan, data, method, sock, srcip, dstip, mux)
| 561 | |
| 562 | |
| 563 | def dns_done(chan, data, method, sock, srcip, dstip, mux): |
| 564 | debug3('dns_done: channel=%d src=%r dst=%r' % (chan, srcip, dstip)) |
| 565 | del mux.channels[chan] |
| 566 | del dnsreqs[chan] |
| 567 | method.send_udp(sock, srcip, dstip, data) |
| 568 | |
| 569 | |
| 570 | def ondns(listener, method, mux, handlers): |