1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Add a debug message for OS scan drops.

This commit is contained in:
david
2011-12-31 21:59:59 +00:00
parent 637ba35a28
commit 89d63e0937

View File

@@ -1231,6 +1231,15 @@ void HostOsScan::adjust_times(HostOsScanStats *hss, OFProbe *probe, struct timev
dropped), or
2. We get no response after a timeout (rcvdtime == NULL). */
if (probe->tryno > 0 || rcvdtime == NULL) {
if (o.debugging > 1) {
if (probe->tryno > 0) {
log_write(LOG_PLAIN, "OS scan DROPPED probe to %s detected (tryno %d)\n",
hss->target->targetipstr(), probe->tryno);
} else {
log_write(LOG_PLAIN, "OS scan DROPPED probe to %s detected (rcvdtime == NULL)\n",
hss->target->targetipstr());
}
}
if (TIMEVAL_AFTER(probe->sent, hss->timing.last_drop))
hss->timing.drop(hss->numProbesActive(), &perf, &now);
if (TIMEVAL_AFTER(probe->sent, stats->timing.last_drop))