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