From cc1a1fa922b39b8a684eb243df1be942b3d409f8 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 8 Dec 2022 22:57:03 +0700 Subject: [PATCH] add 'HTTP' proxy type --- xpra/scripts/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/xpra/scripts/main.py b/xpra/scripts/main.py index 031a41f9e3..861c27a5ea 100755 --- a/xpra/scripts/main.py +++ b/xpra/scripts/main.py @@ -910,6 +910,7 @@ def proxy_connect(options): proxy_type = { "SOCKS5" : socks.SOCKS5, "SOCKS4" : socks.SOCKS4, + "HTTP" : socks.HTTP, }.get(ptype, socks.SOCKS5) if not proxy_type: raise InitExit(EXIT_UNSUPPORTED, f"unsupported proxy type {ptype!r}")