diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-01-05 14:13:14 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-01-05 14:13:14 +0100 |
commit | ac5351b425c2a8faf6e22f8f380f6c5536b95ad2 (patch) | |
tree | 3fa0ca9aba243a967ecb9468cdb02e241cf04a87 /lua.c | |
parent | ce8b226cbdf4b1fbf10571ced052172fa3e2e04d (diff) |
add header table for lua calls
Diffstat (limited to 'lua.c')
-rw-r--r-- | lua.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -192,11 +192,13 @@ error: static void lua_main(struct client *cl, struct path_info *pi, const char *url) { + struct blob_attr *cur; const char *error; struct env_var *var; lua_State *L = _L; int path_len, prefix_len; char *str; + int rem; lua_getglobal(L, UH_LUA_CB); @@ -227,6 +229,13 @@ static void lua_main(struct client *cl, struct path_info *pi, const char *url) lua_pushnumber(L, 0.9 + (cl->request.version / 10.0)); lua_setfield(L, -2, "HTTP_VERSION"); + lua_newtable(L); + blob_for_each_attr(cur, cl->hdr.head, rem) { + lua_pushstring(L, blobmsg_data(cur)); + lua_setfield(L, -2, blobmsg_name(cur)); + } + lua_setfield(L, -2, "headers"); + switch(lua_pcall(L, 1, 0, 0)) { case LUA_ERRMEM: case LUA_ERRRUN: |