From ac5351b425c2a8faf6e22f8f380f6c5536b95ad2 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 5 Jan 2013 14:13:14 +0100 Subject: [PATCH] add header table for lua calls --- lua.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lua.c b/lua.c index e404add..0dd4d4c 100644 --- a/lua.c +++ b/lua.c @@ -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: -- 2.30.2