mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
Moved the includes for Lua headers to the .cc files so they are not needlessly, repeatedly included. Similarly, moved some standard headers to the .cc files and reorganized includes to be uniform for all nse_* source files. Fixed whitespace (removed tabs).
14 lines
243 B
C++
14 lines
243 B
C++
#ifndef NSE_NMAPLIB
|
|
#define NSE_NMAPLIB
|
|
|
|
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
|
|
|