1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 21:21:31 +00:00
Files
nmap/nse_nmaplib.h
2006-12-11 00:34:26 +00:00

19 lines
282 B
C++

#ifndef NSE_NMAPLIB
#define NSE_NMAPLIB
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
class Target;
class Port;
int set_nmaplib(lua_State* l);
void set_hostinfo(lua_State* l, Target* currenths);
void set_portinfo(lua_State* l, Port* port);
#endif