2008-06-28 18:37:28 +00:00
|
|
|
#ifndef _LIGHTTPD_OPTIONS_LUA_H_
|
|
|
|
#define _LIGHTTPD_OPTIONS_LUA_H_
|
|
|
|
|
|
|
|
#include "options.h"
|
|
|
|
|
|
|
|
#include <lua.h>
|
|
|
|
|
|
|
|
/* converts the top of the stack into an option
|
|
|
|
* and pops the value
|
|
|
|
* returns NULL if it couldn't convert the value (still pops it)
|
|
|
|
*/
|
2008-07-19 10:56:44 +00:00
|
|
|
LI_API option* option_from_lua(server *srv, lua_State *L);
|
2008-06-28 18:37:28 +00:00
|
|
|
|
|
|
|
LI_API GString* lua_togstring(lua_State *L, int ndx);
|
|
|
|
|
|
|
|
#endif
|