Commit e1af7d4e by steve

tz clear up and ip util update

parent 5ab11d2a
...@@ -48,14 +48,10 @@ def ip2long_v4(ip): ...@@ -48,14 +48,10 @@ def ip2long_v4(ip):
@return: network byte order 32-bit integer @return: network byte order 32-bit integer
@rtype: int @rtype: int
""" """
ip_array = ip.split('.')
if PY3: return int(socket.inet_aton(ip).encode('hex'), 16)
# int and long are unified in py3
return int(ip_array[0]) * 16777216 + int(ip_array[1]) * 65536 + \
int(ip_array[2]) * 256 + int(ip_array[3])
else:
return long(ip_array[0]) * 16777216 + long(ip_array[1]) * 65536 + \
long(ip_array[2]) * 256 + long(ip_array[3])
def ip2long_v6(ip): def ip2long_v6(ip):
...@@ -67,7 +63,4 @@ def ip2long_v6(ip): ...@@ -67,7 +63,4 @@ def ip2long_v6(ip):
@return: network byte order long @return: network byte order long
@rtype: long @rtype: long
""" """
ipbyte = socket.inet_pton(socket.AF_INET6, ip) return int(socket.inet_pton(socket.AF_INET6, ip).encode('hex'), 16)
ipnum = array('L', struct.unpack('!4L', ipbyte))
max_index = len(ipnum) - 1
return sum(ipnum[max_index - i] << (i * 32) for i in range(len(ipnum)))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment