pathoc: use idna encoding for hostnames

This commit is contained in:
Maximilian Hils 2016-06-16 17:09:52 -07:00
parent 2a0e850615
commit 78785df16b
1 changed files with 1 additions and 1 deletions

View File

@ -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()