summaryrefslogtreecommitdiff
path: root/package/uhttpd/src/uhttpd-lua.c
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-07-06 17:29:25 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-07-06 17:29:25 +0000
commit1f2d5da8876fd4475b47093bb566d2eecb87de13 (patch)
tree23791d42fdc6bc4930f598247af965b12d42bf05 /package/uhttpd/src/uhttpd-lua.c
parentfe015f399fb6f8ff45b5863f41b8d33f64dfc1bd (diff)
downloadmtk-20170518-1f2d5da8876fd4475b47093bb566d2eecb87de13.zip
mtk-20170518-1f2d5da8876fd4475b47093bb566d2eecb87de13.tar.gz
mtk-20170518-1f2d5da8876fd4475b47093bb566d2eecb87de13.tar.bz2
uhttpd: do not subscribe to epoll write events Watch child read pipe end for data instead of relying on socket write notification to process cgi data, should lower cpu consumption during requests on weaker devices.
SVN-Revision: 32640
Diffstat (limited to 'package/uhttpd/src/uhttpd-lua.c')
-rw-r--r--package/uhttpd/src/uhttpd-lua.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/package/uhttpd/src/uhttpd-lua.c b/package/uhttpd/src/uhttpd-lua.c
index 5158534..10d6de4 100644
--- a/package/uhttpd/src/uhttpd-lua.c
+++ b/package/uhttpd/src/uhttpd-lua.c
@@ -558,6 +558,7 @@ bool uh_lua_request(struct client *cl, lua_State *L)
memset(state, 0, sizeof(*state));
state->cl = cl;
+ state->cl->pipe.fd = rfd[0];
state->cl->proc.pid = child;
/* close unneeded pipe ends */