diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-21 17:50:00 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-21 17:50:00 +0000 |
commit | 5fc3a1ceb01b2f55734373f70a311651092fefa8 (patch) | |
tree | 62ea0c9fa1975b8dfee75b72fd02d5447ae646f0 /contrib/package/uhttpd/src/uhttpd-lua.h | |
parent | 0dd0fdad5589965489cdbf4baf01f3b62f1c24b7 (diff) |
uhttpd: make Lua handler more CGI like and fork child away
Diffstat (limited to 'contrib/package/uhttpd/src/uhttpd-lua.h')
-rw-r--r-- | contrib/package/uhttpd/src/uhttpd-lua.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/package/uhttpd/src/uhttpd-lua.h b/contrib/package/uhttpd/src/uhttpd-lua.h index 22a44c695..518c2bc83 100644 --- a/contrib/package/uhttpd/src/uhttpd-lua.h +++ b/contrib/package/uhttpd/src/uhttpd-lua.h @@ -1,5 +1,5 @@ /* - * uhttpd - Tiny non-forking httpd - Lua header + * uhttpd - Tiny single-threaded httpd - Lua header * * Copyright (C) 2010 Jo-Philipp Wich <xm@subsignal.org> * @@ -19,6 +19,7 @@ #ifndef _UHTTPD_LUA_ #include <math.h> /* floor() */ +#include <errno.h> #include <lua.h> #include <lauxlib.h> |