mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
17 lines
336 B
C++
17 lines
336 B
C++
#ifndef NSE_NMAPLIB
|
|
#define NSE_NMAPLIB
|
|
|
|
#define NSE_NMAPLIBNAME "nmap"
|
|
|
|
class Target;
|
|
class Port;
|
|
|
|
int luaopen_nmap(lua_State* l);
|
|
#define NSE_NUM_HOSTINFO_FIELDS 17
|
|
void set_hostinfo(lua_State* l, Target* currenths);
|
|
#define NSE_NUM_PORTINFO_FIELDS 7
|
|
void set_portinfo(lua_State* l, const Target *target, const Port* port);
|
|
|
|
#endif
|
|
|