mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-04-20 09:19:23 +02:00
Remove unused variable 'timeout'
This commit is contained in:
parent
4e8c5411b5
commit
4300a02343
@ -389,7 +389,7 @@ def onaccept_udp(listener, method, mux, handlers):
|
|||||||
srcip, dstip, data = t
|
srcip, dstip, data = t
|
||||||
debug1('Accept UDP: %r -> %r.\n' % (srcip, dstip,))
|
debug1('Accept UDP: %r -> %r.\n' % (srcip, dstip,))
|
||||||
if srcip in udp_by_src:
|
if srcip in udp_by_src:
|
||||||
chan, timeout = udp_by_src[srcip]
|
chan, _ = udp_by_src[srcip]
|
||||||
else:
|
else:
|
||||||
chan = mux.next_channel()
|
chan = mux.next_channel()
|
||||||
mux.channels[chan] = lambda cmd, data: udp_done(
|
mux.channels[chan] = lambda cmd, data: udp_done(
|
||||||
|
Loading…
Reference in New Issue
Block a user