(channel, data)
| 220 | mux.got_host_req = got_host_req |
| 221 | |
| 222 | def new_channel(channel, data): |
| 223 | (dstip,dstport) = data.split(',', 1) |
| 224 | dstport = int(dstport) |
| 225 | outwrap = ssnet.connect_dst(dstip,dstport) |
| 226 | handlers.append(Proxy(MuxWrapper(mux, channel), outwrap)) |
| 227 | mux.new_channel = new_channel |
| 228 | |
| 229 | dnshandlers = {} |
nothing calls this directly
no test coverage detected