mirror of
https://github.com/nmap/nmap.git
synced 2025-12-15 12:19:02 +00:00
20 lines
317 B
C++
20 lines
317 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);
|
|
int luaopen_stdnse_c (lua_State *L);
|
|
void set_hostinfo(lua_State* l, Target* currenths);
|
|
void set_portinfo(lua_State* l, Port* port);
|
|
|
|
#endif
|
|
|