mirror of
https://github.com/nmap/nmap.git
synced 2025-12-24 16:39:03 +00:00
o Fixed a bug on Win32 problem which caused an infinite loop when Nmap
encountered certain broadcast addresses. [Dudi Itzhakov]
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
# Nmap Changelog ($Id$); -*-text-*-
|
||||
|
||||
o Fixed a bug on Win32 problem which caused an infinite loop when Nmap
|
||||
encountered certain broadcast addresses. [Dudi Itzhakov]
|
||||
|
||||
o Fix MingW compilation by adding a signal.h include to
|
||||
main.cc. [Gisle Vanem]
|
||||
|
||||
|
||||
@@ -3356,6 +3356,9 @@ static bool do_one_select_round(UltraScanInfo *USI, struct timeval *stime) {
|
||||
newportstate = PORT_FILTERED;
|
||||
current_reason = ER_HOSTUNREACH;
|
||||
break;
|
||||
#ifdef WIN32
|
||||
case WSAEADDRNOTAVAIL:
|
||||
#endif
|
||||
case ETIMEDOUT:
|
||||
case EHOSTDOWN:
|
||||
newhoststate = HOST_DOWN;
|
||||
|
||||
Reference in New Issue
Block a user