aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
blob: cd4b0e1094a019e60d8e7258290386d368d82e93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "lua.h"

int l_listen(lua_State*);

static char* http_codes[600] = {0};


static const luaL_Reg net_function_list [] = {
  {"listen",l_listen},
  
  {NULL,NULL}
};