mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
16 lines
225 B
C
16 lines
225 B
C
#ifndef NMAP_LUA_NSOCK_H
|
|
#define NMAP_LUA_NSOCK_H
|
|
|
|
extern "C" {
|
|
#include "lua.h"
|
|
#include "lualib.h"
|
|
#include "lauxlib.h"
|
|
}
|
|
|
|
int l_nsock_open(lua_State* l);
|
|
int l_nsock_new(lua_State* l);
|
|
int l_nsock_loop(int tout);
|
|
|
|
#endif
|
|
|