mirror of
https://github.com/lxsang/antd-lua-plugin
synced 2025-04-19 20:36:43 +02:00
fix to new lib
This commit is contained in:
parent
8948eefb6a
commit
00a35be0a5
@ -49,6 +49,7 @@ static void push_dict_to_lua(lua_State* L, dictionary_t d)
|
|||||||
void* handle(void* data)
|
void* handle(void* data)
|
||||||
{
|
{
|
||||||
antd_request_t* rq = (antd_request_t*) data;
|
antd_request_t* rq = (antd_request_t*) data;
|
||||||
|
char buf[BUFFLEN];
|
||||||
plugin_header_t* __plugin__ = meta();
|
plugin_header_t* __plugin__ = meta();
|
||||||
lua_State* L = NULL;
|
lua_State* L = NULL;
|
||||||
//char * index = __s("%s/%s",__plugin__.htdocs,"router.lua");
|
//char * index = __s("%s/%s",__plugin__.htdocs,"router.lua");
|
||||||
@ -67,7 +68,8 @@ void* handle(void* data)
|
|||||||
lua_settable(L,-3);
|
lua_settable(L,-3);
|
||||||
|
|
||||||
lua_pushstring(L,"root");
|
lua_pushstring(L,"root");
|
||||||
lua_pushstring(L, rq->client->port_config->htdocs);
|
htdocs(rq, buf);
|
||||||
|
lua_pushstring(L, buf);
|
||||||
lua_settable(L,-3);
|
lua_settable(L,-3);
|
||||||
|
|
||||||
lua_pushstring(L,"apiroot");
|
lua_pushstring(L,"apiroot");
|
||||||
@ -75,7 +77,8 @@ void* handle(void* data)
|
|||||||
lua_settable(L,-3);
|
lua_settable(L,-3);
|
||||||
|
|
||||||
lua_pushstring(L,"tmpdir");
|
lua_pushstring(L,"tmpdir");
|
||||||
lua_pushstring(L, tmpdir());
|
tmpdir(buf);
|
||||||
|
lua_pushstring(L, buf);
|
||||||
lua_settable(L,-3);
|
lua_settable(L,-3);
|
||||||
|
|
||||||
lua_pushstring(L,"dbpath");
|
lua_pushstring(L,"dbpath");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user