blob: 7596b354d51b03a8af85d1d8ef69b50191e1e594 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _UHTTPD_LUA_
#include <math.h> /* floor() */
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
#define UH_LUA_CALLBACK "handle_request"
#define UH_LUA_ERR_TIMEOUT -1
#define UH_LUA_ERR_TOOBIG -2
#define UH_LUA_ERR_PARAM -3
lua_State * uh_lua_init();
void uh_lua_request(struct client *cl, struct http_request *req, lua_State *L);
#endif
|