1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-20 22:49:01 +00:00

Added a new NSE_STATUS_PROXYERROR status type to report proxy-related errors

back to caller.
This commit is contained in:
henri
2013-04-22 19:32:29 +00:00
parent da1559b237
commit c9d237f26b
3 changed files with 21 additions and 15 deletions

View File

@@ -500,6 +500,7 @@ const char *nse_status2str(enum nse_status status) {
case NSE_STATUS_CANCELLED: return "CANCELLED";
case NSE_STATUS_KILL: return "KILL";
case NSE_STATUS_EOF: return "EOF";
case NSE_STATUS_PROXYERROR: return "PROXY ERROR";
default:
return "UNKNOWN!";
}