@ -67,7 +67,7 @@ def isHostInPrivateIPRange(host):
if (ord(hostAddr[0]) & 0xfe) == 0xfc:
return False
pass
else:
elif ".onion" not in host:
if host[:3] == '10.':
return True
if host[:4] == '172.':
@ -76,6 +76,9 @@ def isHostInPrivateIPRange(host):
if host[:8] == '192.168.':
# Multicast
if host[:3] >= 224 and host[:3] <= 239 and host[4] == '.':
def addDataPadding(data, desiredMsgLength = 12, paddingChar = '\x00'):