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).
15 lines
287 B
C
15 lines
287 B
C
#ifndef NMAP_LUA_NSOCK_H
|
|
#define NMAP_LUA_NSOCK_H
|
|
|
|
int luaopen_nsock(lua_State *);
|
|
int l_nsock_new(lua_State *);
|
|
int l_nsock_loop(int tout);
|
|
int l_nsock_sleep(lua_State *L);
|
|
|
|
int l_dnet_new(lua_State *);
|
|
int l_dnet_open(lua_State *);
|
|
int l_dnet_get_interface_link(lua_State *);
|
|
|
|
#endif
|
|
|