mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
can have as many sockets open as they need. Previously, only 10 sockets could be open. See: http://seclists.org/nmap-dev/2008/q3/0130.html
20 lines
328 B
C
20 lines
328 B
C
#ifndef NMAP_LUA_NSOCK_H
|
|
#define NMAP_LUA_NSOCK_H
|
|
|
|
extern "C" {
|
|
#include "lua.h"
|
|
#include "lualib.h"
|
|
#include "lauxlib.h"
|
|
}
|
|
|
|
int luaopen_nsock(lua_State *);
|
|
int l_nsock_new(lua_State *);
|
|
int l_nsock_loop(int tout);
|
|
|
|
int l_dnet_new(lua_State *);
|
|
int l_dnet_open(lua_State *);
|
|
int l_dnet_get_interface_link(lua_State *);
|
|
|
|
#endif
|
|
|