pathoc: use idna encoding for hostnames
This commit is contained in:
parent
2a0e850615
commit
78785df16b
|
@ -241,7 +241,7 @@ class Pathoc(tcp.TCPClient):
|
|||
|
||||
def http_connect(self, connect_to):
|
||||
self.wfile.write(
|
||||
b'CONNECT %s:%d HTTP/1.1\r\n' % (connect_to[0].encode(), connect_to[1]) +
|
||||
b'CONNECT %s:%d HTTP/1.1\r\n' % (connect_to[0].encode("idna"), connect_to[1]) +
|
||||
b'\r\n'
|
||||
)
|
||||
self.wfile.flush()
|
||||
|
|
Loading…
Reference in New Issue