Update proxy.py

This commit is contained in:
Asiel Díaz Benítez
2020-01-14 14:27:22 -05:00
committed by holger krekel
parent 490c8e055b
commit 531928bf0b

View File

@@ -17,7 +17,7 @@ import socket
import socketserver
class Proxy(socketserver.TCPServer):
class Proxy(socketserver.ThreadingTCPServer):
allow_reuse_address = True
def __init__(self, proxy_host, proxy_port, real_host, real_port, use_ssl):