You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
404 B
C
15 lines
404 B
C
#ifndef _LIGHTTPD_CONDITION_LUA_H_
|
|
#define _LIGHTTPD_CONDITION_LUA_H_
|
|
|
|
#include <lighttpd/base.h>
|
|
#include <lua.h>
|
|
|
|
LI_API void li_lua_init_condition_mt(liServer *srv, lua_State *L);
|
|
|
|
LI_API liCondition* li_lua_get_condition(lua_State *L, int ndx);
|
|
LI_API int li_lua_push_condition(liServer *srv, lua_State *L, liCondition *c);
|
|
|
|
LI_API void li_lua_push_lvalues_dict(liServer *srv, lua_State *L);
|
|
|
|
#endif
|