diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-25 02:04:50 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-25 02:04:50 +0000 |
commit | af4611d4e02c8a5b0c72cae08c1d944528d63787 (patch) | |
tree | 321a71c77c3da0c7ee20bae6183e5c89fd35fb25 /contrib/package/uhttpd/src/uhttpd-lua.c | |
parent | a6722be769be20d3e06d0ca77eac1bd3af6f9593 (diff) |
uhttpd: move Lua and TLS support into loadable plugins
Diffstat (limited to 'contrib/package/uhttpd/src/uhttpd-lua.c')
-rw-r--r-- | contrib/package/uhttpd/src/uhttpd-lua.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/package/uhttpd/src/uhttpd-lua.c b/contrib/package/uhttpd/src/uhttpd-lua.c index db14eda45..ab09841cd 100644 --- a/contrib/package/uhttpd/src/uhttpd-lua.c +++ b/contrib/package/uhttpd/src/uhttpd-lua.c @@ -533,3 +533,9 @@ void uh_lua_request(struct client *cl, struct http_request *req, lua_State *L) } } +void uh_lua_close(lua_State *L) +{ + lua_close(L); +} + + |