diff options
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); +} + + |