1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-02 21:09:00 +00:00

Removing pos_scan from scan engine as it is not used anymore.

This commit is contained in:
kroosec
2012-08-17 18:33:07 +00:00
parent 7f7a7a3795
commit 9247295bfb
2 changed files with 7 additions and 347 deletions

View File

@@ -1,8 +1,8 @@
/***************************************************************************
* scan_engine.h -- Includes much of the "engine" functions for scanning, *
* such as pos_scan and ultra_scan. It also includes dependant functions *
* such as those for collecting SYN/connect scan responses. *
* such as ultra_scan. It also includes dependant functions such as *
* those for collecting SYN/connect scan responses. *
* *
***********************IMPORTANT NMAP LICENSE TERMS************************
* *
@@ -158,11 +158,6 @@ typedef struct probespec {
void ultra_scan(std::vector<Target *> &Targets, struct scan_lists *ports,
stype scantype, struct timeout_info *to = NULL);
/* Handles the "positive-response" scans (where we get a response
telling us that the port is open based on the probe. This includes
SYN Scan, Connect Scan, RPC scan, Window Scan, and ACK scan */
void pos_scan(Target *target, u16 *portarray, int numports, stype scantype);
/* FTP bounce attack scan. This function is rather lame and should be
rewritten. But I don't think it is used much anyway. If I'm going to
allow FTP bounce scan, I should really allow SOCKS proxy scan. */