mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
17 lines
342 B
C++
17 lines
342 B
C++
#ifndef NSE_NMAPLIB
|
|
#define NSE_NMAPLIB
|
|
|
|
#define NSE_NMAPLIBNAME "nmap"
|
|
#define NSE_STDNSELIBNAME "stdnse.c"
|
|
|
|
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, const Target *target, const Port* port);
|
|
|
|
#endif
|
|
|