From 8537939d261f810024890e0e772194bbfffddefc Mon Sep 17 00:00:00 2001 From: shortcutme Date: Sat, 17 Aug 2019 20:34:04 +0200 Subject: [PATCH] Disable UDP in proxy mode --- src/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.py b/src/main.py index ed813ade..7ffbedd5 100644 --- a/src/main.py +++ b/src/main.py @@ -83,6 +83,7 @@ if config.proxy: logging.info("Patching sockets to socks proxy: %s" % config.proxy) if config.fileserver_ip == "*": config.fileserver_ip = '127.0.0.1' # Do not accept connections anywhere but localhost + config.disable_udp = True # UDP not supported currently with proxy SocksProxy.monkeyPatch(*config.proxy.split(":")) elif config.tor == "always": from util import SocksProxy