mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 23:18:40 +00:00
Add windows support to is_ip
This commit is contained in:
parent
ba4ca111c6
commit
0e4101a9a3
1 changed files with 11 additions and 3 deletions
|
@ -553,6 +553,10 @@ def is_ip(ip):
|
||||||
import socket
|
import socket
|
||||||
#first we test ipv4
|
#first we test ipv4
|
||||||
try:
|
try:
|
||||||
|
if windows_check():
|
||||||
|
if socket.inet_aton("%s" % (ip)):
|
||||||
|
return True
|
||||||
|
else:
|
||||||
if socket.inet_pton(socket.AF_INET, "%s" % (ip)):
|
if socket.inet_pton(socket.AF_INET, "%s" % (ip)):
|
||||||
return True
|
return True
|
||||||
except socket.error:
|
except socket.error:
|
||||||
|
@ -560,6 +564,10 @@ def is_ip(ip):
|
||||||
return False
|
return False
|
||||||
#now test ipv6
|
#now test ipv6
|
||||||
try:
|
try:
|
||||||
|
if windows_check():
|
||||||
|
log.warning("ipv6 check unavailable on windows")
|
||||||
|
return True
|
||||||
|
else:
|
||||||
if socket.inet_pton(socket.AF_INET6, "%s" % (ip)):
|
if socket.inet_pton(socket.AF_INET6, "%s" % (ip)):
|
||||||
return True
|
return True
|
||||||
except socket.error:
|
except socket.error:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue