mirror of
https://github.com/nmap/nmap.git
synced 2025-12-07 13:11:28 +00:00
19 lines
280 B
C++
19 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
|
|
|