From b9c6596a781e1ed3753e30eee54b5cf058ced950 Mon Sep 17 00:00:00 2001 From: fyodor Date: Sun, 30 Nov 2008 20:48:32 +0000 Subject: [PATCH] oops, missed removal of 204.152.64.0/23 in last checkin --- nmap.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/nmap.cc b/nmap.cc index e0288c2c4..323ed578a 100644 --- a/nmap.cc +++ b/nmap.cc @@ -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)