mirror of
https://github.com/nmap/nmap.git
synced 2025-12-07 13:11:28 +00:00
15 lines
266 B
C
15 lines
266 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_sleep(lua_State *L);
|
|
|
|
int l_dnet_new(lua_State *);
|
|
int l_dnet_get_interface_link(lua_State *);
|
|
|
|
#define NSE_NSOCK_LOOP "NSOCK_LOOP"
|
|
|
|
#endif
|
|
|