diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-20 13:45:50 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-20 13:45:50 +0000 |
commit | 0f18174879e121e5c5a64de0e3cb88a9c78e2b37 (patch) | |
tree | b6baf4fa1aacd49304075b00765e70c8ff0eb3fe /contrib/package/uhttpd/src/uhttpd-cgi.h | |
parent | 66ffcefa5555b35fc2e71429d9be16ac6de82801 (diff) |
uhttpd:
- rework url parsing and path resolving
- handle more cgi quirks
- change request dispatching
- clean up cflags
Diffstat (limited to 'contrib/package/uhttpd/src/uhttpd-cgi.h')
-rw-r--r-- | contrib/package/uhttpd/src/uhttpd-cgi.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/contrib/package/uhttpd/src/uhttpd-cgi.h b/contrib/package/uhttpd/src/uhttpd-cgi.h index 4632bcc27..c505076f4 100644 --- a/contrib/package/uhttpd/src/uhttpd-cgi.h +++ b/contrib/package/uhttpd/src/uhttpd-cgi.h @@ -6,15 +6,8 @@ #include <sys/types.h> #include <linux/limits.h> -void uh_cgi_request(struct client *cl, struct http_request *req); - -struct path_info { - char *root; - char *wdir; - char *phys; - char *name; - char *info; - char *query; -}; +void uh_cgi_request( + struct client *cl, struct http_request *req, struct uh_path_info *pi +); #endif |