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

Disambiguate another map from std::map.

This commit is contained in:
david
2012-03-19 16:53:44 +00:00
parent 9698ccabaf
commit cde81f6fb4

View File

@@ -3740,7 +3740,7 @@ static void doAnyOutstandingRetransmits(UltraScanInfo *USI) {
list<UltraProbe *>::iterator probeI; list<UltraProbe *>::iterator probeI;
/* A cache of the last processed probe from each host, to avoid re-examining a /* A cache of the last processed probe from each host, to avoid re-examining a
bunch of probes to find the next one that needs to be retransmitted. */ bunch of probes to find the next one that needs to be retransmitted. */
map<HostScanStats *, list<UltraProbe *>::iterator> probe_cache; std::map<HostScanStats *, list<UltraProbe *>::iterator> probe_cache;
HostScanStats *host = NULL; HostScanStats *host = NULL;
UltraProbe *probe = NULL; UltraProbe *probe = NULL;
int retrans = 0; /* Number of retransmissions during a loop */ int retrans = 0; /* Number of retransmissions during a loop */