diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-07-09 00:08:20 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-07-09 00:08:20 +0000 |
commit | 86de034767ea5ce560a55fa1cb59fec9ea6fcc20 (patch) | |
tree | f26e65977da4b840cee9ce51b476c1755b5e5df8 /package/uhttpd/src/uhttpd.h | |
parent | 1f1cf1990b3114f66180fb022dc0f32343728cb3 (diff) | |
download | upstream-86de034767ea5ce560a55fa1cb59fec9ea6fcc20.tar.gz upstream-86de034767ea5ce560a55fa1cb59fec9ea6fcc20.tar.bz2 upstream-86de034767ea5ce560a55fa1cb59fec9ea6fcc20.zip |
uhttpd: various fixes
- avoid closing descriptors before removing them from uloop (#11755, #11830)
- do not auto-initialize ubus if no prefix is set (#11832)
- remove extraneous client context pointer from cgi and lua states
- code cleanups and debug message changes
SVN-Revision: 32651
Diffstat (limited to 'package/uhttpd/src/uhttpd.h')
-rw-r--r-- | package/uhttpd/src/uhttpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/uhttpd/src/uhttpd.h b/package/uhttpd/src/uhttpd.h index 69fe21a418..fe86b01d40 100644 --- a/package/uhttpd/src/uhttpd.h +++ b/package/uhttpd/src/uhttpd.h @@ -160,7 +160,8 @@ struct client { SSL *tls; #endif struct uloop_fd fd; - struct uloop_fd pipe; + struct uloop_fd rpipe; + struct uloop_fd wpipe; struct uloop_process proc; struct uloop_timeout timeout; bool (*cb)(struct client *); |