Windows doesn't support inet_pton.
This commit is contained in:
parent
9e86a7b357
commit
03dedfc871
1 changed files with 4 additions and 3 deletions
|
@ -93,15 +93,16 @@ def resolve(host, port=None, service=None, proto='tcp', resolver=None):
|
|||
|
||||
try:
|
||||
# If `host` is an IPv4 literal, we can return it immediately.
|
||||
ipv4 = socket.inet_pton(socket.AF_INET, host)
|
||||
ipv4 = socket.inet_aton(host)
|
||||
yield (host, port)
|
||||
except socket.error:
|
||||
pass
|
||||
|
||||
try:
|
||||
# Likewise, If `host` is an IPv6 literal, we can return it immediately.
|
||||
ipv6 = socket.inet_pton(socket.AF_INET6, host)
|
||||
yield (host, port)
|
||||
if hasattr(socket, 'inet_pton'):
|
||||
ipv6 = socket.inet_pton(socket.AF_INET6, host)
|
||||
yield (host, port)
|
||||
except socket.error:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue