X-Git-Url: https://git.rapsys.eu/youtubedl/blobdiff_plain/ced7488f6d3a519b2c1b1cbd31048743fb8285bd..3f49721bd802c357ee9e5c1b6f07e0b68ac47fc2:/youtube_dl/socks.py?ds=inline diff --git a/youtube_dl/socks.py b/youtube_dl/socks.py index 1048072..63d19b3 100644 --- a/youtube_dl/socks.py +++ b/youtube_dl/socks.py @@ -103,6 +103,7 @@ class ProxyType(object): SOCKS4A = 1 SOCKS5 = 2 + Proxy = collections.namedtuple('Proxy', ( 'type', 'host', 'port', 'username', 'password', 'remote_dns'))