mirror of
https://github.com/nmap/nmap.git
synced 2026-06-25 10:38:02 +00:00
Handle EACCES in handle_connect_result.
This specific connect error is already handled by ultra_scan. A comment there says it can result from ICMPv6 destination-unreachable admin-prohibited messages.
This commit is contained in:
parent
792d06108c
commit
47ee706a4a
1 changed files with 1 additions and 0 deletions
|
|
@ -338,6 +338,7 @@ void handle_connect_result(mspool *ms, msevent *nse, enum nse_status status) {
|
|||
case 0:
|
||||
nse->status = NSE_STATUS_SUCCESS;
|
||||
break;
|
||||
case EACCES: /* Can be caused by ICMPv6 dest-unreach-admin. */
|
||||
case ECONNREFUSED:
|
||||
case EHOSTUNREACH:
|
||||
case ENETDOWN:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue