We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c619840 commit 117afc7Copy full SHA for 117afc7
sshuttle/server.py
@@ -334,14 +334,14 @@ def udp_open(channel, data):
334
debug3('expiring dnsreqs channel=%d\n' % channel)
335
remove.append(channel)
336
h.ok = False
337
- for channel in remove:
338
- del dnshandlers[channel]
+ for channel in remove:
+ del dnshandlers[channel]
339
if udphandlers:
340
remove = []
341
for channel, h in udphandlers.items():
342
if not h.ok:
343
debug3('expiring UDP channel=%d\n' % channel)
344
345
346
347
- del udphandlers[channel]
+ del udphandlers[channel]
0 commit comments