blob: 95b6cf93525681d107a3062a7d72fd8c5fcd3365 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "lua.h"
int l_listen(lua_State*);
static char* http_codes[600] = {0};
extern volatile size_t threads;
static const luaL_Reg net_function_list [] = {
{"listen",l_listen},
{NULL,NULL}
};
|