summaryrefslogtreecommitdiff
path: root/uhttpd.h
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-07-09 00:08:20 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-07-09 00:08:20 +0000
commit77d6f72fb7a66c22b4723c6dbf7e8b3d6d63a618 (patch)
treebf654e57d262a5d1afe96fb7bad854cf588c9c6b /uhttpd.h
parente3265898d9993fd951bc89a46c8ce5fe7b5faeca (diff)
downloaduhttpd-77d6f72fb7a66c22b4723c6dbf7e8b3d6d63a618.tar.gz
[package] 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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk/package/uhttpd/src@32651 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'uhttpd.h')
-rw-r--r--uhttpd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/uhttpd.h b/uhttpd.h
index 69fe21a..fe86b01 100644
--- a/uhttpd.h
+++ b/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 *);