1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-06 14:39:03 +00:00

oops, missed removal of 204.152.64.0/23 in last checkin

This commit is contained in:
fyodor
2008-11-30 20:48:32 +00:00
parent e9db35af38
commit b9c6596a78

View File

@@ -413,11 +413,6 @@ static int ip_is_reserved(struct in_addr *ip)
if (i1 == 169 && i2 == 254)
return 1;
/* believe it or not, 204.152.64.0/23 is some bizarre Sun proprietary
* clustering thing */
if (i1 == 204 && i2 == 152 && (i3 == 64 || i3 == 65))
return 1;
/* 224-239/8 is all multicast stuff */
/* 240-255/8 is IANA reserved */
if (i1 >= 224)