Skip to content

Commit ceee38e

Browse files
committed
Merge branch 'master' of github.com:Anorov/PySocks
* 'master' of github.com:Anorov/PySocks: Adding Windows compatibility allow error where target is only listening to ipv4 and connection is attempted at ipv6
2 parents 55d35e7 + 7b8f81b commit ceee38e

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

socks.py

+18-6
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,21 @@
5959
from errno import EOPNOTSUPP, EINVAL, EAGAIN
6060
from io import BytesIO
6161
from os import SEEK_CUR
62+
import os
6263
from collections import Callable
6364
from base64 import b64encode
6465

66+
67+
if os.name == 'nt':
68+
try:
69+
import win_inet_pton
70+
import socket
71+
except ImportError:
72+
raise ImportError('To run PySocks under windows you need to install win_inet_pton')
73+
else:
74+
import socket
75+
76+
6577
PROXY_TYPE_SOCKS4 = SOCKS4 = 1
6678
PROXY_TYPE_SOCKS5 = SOCKS5 = 2
6779
PROXY_TYPE_HTTP = HTTP = 3
@@ -179,29 +191,29 @@ def create_connection(dest_pair, proxy_type=None, proxy_addr=None,
179191
try:
180192
sock = socksocket(family, socket_type, proto)
181193

182-
if socket_options is not None:
194+
if socket_options:
183195
for opt in socket_options:
184196
sock.setsockopt(*opt)
185197

186198
if isinstance(timeout, (int, float)):
187199
sock.settimeout(timeout)
188200

189-
if proxy_type is not None:
201+
if proxy_type:
190202
sock.set_proxy(proxy_type, proxy_addr, proxy_port, proxy_rdns,
191203
proxy_username, proxy_password)
192-
if source_address is not None:
204+
if source_address:
193205
sock.bind(source_address)
194206

195207
sock.connect((remote_host, remote_port))
196208
return sock
197209

198-
except socket.error as e:
210+
except (socket.error, ProxyConnectionError) as e:
199211
err = e
200-
if sock is not None:
212+
if sock:
201213
sock.close()
202214
sock = None
203215

204-
if err is not None:
216+
if err:
205217
raise err
206218

207219
raise socket.error("gai returned empty list.")

0 commit comments

Comments
 (0)