mirror of
https://github.com/nmap/nmap.git
synced 2025-12-09 06:01:28 +00:00
23 lines
348 B
C++
23 lines
348 B
C++
#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
|
|
|