Changeset 5830 for luci2/zhttpd/zhttpd.h
- Timestamp:
- 03/15/10 22:01:46 (3 years ago)
- Files:
-
- 1 modified
-
luci2/zhttpd/zhttpd.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
luci2/zhttpd/zhttpd.h
r5793 r5830 9 9 #define ZHTTPD_H_ 10 10 11 #define _FILE_OFFSET_BITS 64 12 13 #include <stdint.h> 11 14 #include <stdio.h> 12 15 #include "zthread.h" 13 #include "cbi2/hmapx.h" 16 #include "libubox/uhtbl.h" 17 #include "libubox/hash.h" 14 18 15 19 #define ZHTTPD_OK 0 … … 34 38 struct zhttpd_request { 35 39 int flags; 36 cbi2_hmap_t *env;40 uhtbl_t env; 37 41 zhttpd_vfs_t *virtual; 38 42 void *handlercontext; … … 67 71 int threads; 68 72 int daemonize; 73 char *pidfile; 69 74 }; 70 75
