Add IPv4 multicast range to ignored addresses

This commit is contained in:
Peter Šurda 2017-01-11 14:46:10 +01:00
parent 8bcfe80ad0
commit 5d2bebae28
Signed by untrusted user: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87
1 changed files with 4 additions and 1 deletions

View File

@ -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):
return True
if host[:8] == '192.168.':
return True
# Multicast
if host[:3] >= 224 and host[:3] <= 239 and host[4] == '.':
return True
return False
def addDataPadding(data, desiredMsgLength = 12, paddingChar = '\x00'):