nmap/nse_nmaplib.h
2008-11-18 21:11:27 +00:00

18 lines
280 B
C++

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