summaryrefslogtreecommitdiff
path: root/package/uhttpd/src/uhttpd-file.h
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-05-28 00:52:24 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-05-28 00:52:24 +0000
commit022fa36b40b02248436584cf0f71bb26d79eb644 (patch)
tree8cb1f4d8f1ab4f1aee4538621684a188101c867c /package/uhttpd/src/uhttpd-file.h
parent8039a1bbb2056019458b5179108e399d0fcb0622 (diff)
downloadmtk-20170518-022fa36b40b02248436584cf0f71bb26d79eb644.zip
mtk-20170518-022fa36b40b02248436584cf0f71bb26d79eb644.tar.gz
mtk-20170518-022fa36b40b02248436584cf0f71bb26d79eb644.tar.bz2
uhttpd: - rewrite large parts of the server, use uloop event driven structure - support concurrent requests and make the upper limit configurable - implement initial version of HTTP-to-ubus JSON proxy and session.* namespace - add compile time support for debug information - code style changes - bump package revision
SVN-Revision: 31931
Diffstat (limited to 'package/uhttpd/src/uhttpd-file.h')
-rw-r--r--package/uhttpd/src/uhttpd-file.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/package/uhttpd/src/uhttpd-file.h b/package/uhttpd/src/uhttpd-file.h
index 3d46815..08dbe2c 100644
--- a/package/uhttpd/src/uhttpd-file.h
+++ b/package/uhttpd/src/uhttpd-file.h
@@ -31,8 +31,6 @@ struct mimetype {
const char *mime;
};
-void uh_file_request(
- struct client *cl, struct http_request *req, struct path_info *pi
-);
+bool uh_file_request(struct client *cl, struct path_info *pi);
#endif