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-file.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-file.h')
-rw-r--r-- | contrib/package/uhttpd/src/uhttpd-file.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/package/uhttpd/src/uhttpd-file.h b/contrib/package/uhttpd/src/uhttpd-file.h index 9e56c3876..37303e07b 100644 --- a/contrib/package/uhttpd/src/uhttpd-file.h +++ b/contrib/package/uhttpd/src/uhttpd-file.h @@ -1,4 +1,4 @@ -#ifndef _UHTTPD_CGI_ +#ifndef _UHTTPD_FILE_ #include <fcntl.h> #include <time.h> @@ -13,6 +13,8 @@ struct mimetype { const char *mime; }; -void uh_file_request(struct client *cl, struct http_request *req); +void uh_file_request( + struct client *cl, struct http_request *req, struct uh_path_info *pi +); #endif |