1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-29 19:09:01 +00:00

Add ifndef guards to prevent double-inclusion of headers

This commit is contained in:
dmiller
2014-12-23 13:48:22 +00:00
parent c95d656bfc
commit 8b487166ca
15 changed files with 66 additions and 1 deletions

View File

@@ -123,6 +123,9 @@
/* $Id$ */
#ifndef SCAN_ENGINE_RAW_H
#define SCAN_ENGINE_RAW_H
#include "scan_engine.h"
#include "Target.h"
#include <vector>
@@ -139,3 +142,5 @@ UltraProbe *sendIPScanProbe(UltraScanInfo *USI, HostScanStats *hss,
bool get_arp_result(UltraScanInfo *USI, struct timeval *stime);
bool get_ns_result(UltraScanInfo *USI, struct timeval *stime);
bool get_pcap_result(UltraScanInfo *USI, struct timeval *stime);
#endif