mirror of
https://github.com/nmap/nmap.git
synced 2026-08-27 03:48:14 +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:
parent
6b1465612f
commit
f2ebfdecba
2 changed files with 6 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue