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

NSE committed

This commit is contained in:
fyodor
2006-12-11 00:34:26 +00:00
parent cc451cdb54
commit b361685be8
136 changed files with 23553 additions and 201 deletions

22
nse_main.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef NMAP_LUA_H
#define NMAP_LUA_H
#include <vector>
#include <list>
#include <string>
#include <string.h>
#include <iostream>
struct script_scan_result {
char* id;
char* output;
};
typedef std::vector<struct script_scan_result> ScriptResults;
class Target;
int script_scan(std::vector<Target *> &targets);
int script_updatedb();
#endif