summaryrefslogtreecommitdiff
path: root/uhttpd.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-12-31 18:49:08 +0100
committerFelix Fietkau <nbd@openwrt.org>2012-12-31 18:49:08 +0100
commit8515c92b9302b258be10df5c5cee240dd4b137f6 (patch)
tree81a74986f105cec6dc5306d1979af0860843a387 /uhttpd.h
parentd779a5dc390b9c6e1ed32cdd287997f81ee88d37 (diff)
downloaduhttpd2-8515c92b9302b258be10df5c5cee240dd4b137f6.tar.gz
make uh_path_lookup static
Diffstat (limited to 'uhttpd.h')
-rw-r--r--uhttpd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/uhttpd.h b/uhttpd.h
index c900e90..02d2705 100644
--- a/uhttpd.h
+++ b/uhttpd.h
@@ -119,6 +119,7 @@ struct client {
struct blob_buf hdr;
void (*dispatch_write_cb)(struct client *cl);
+ void (*dispatch_close_fds)(struct client *cl);
void (*dispatch_free)(struct client *cl);
union {
@@ -158,4 +159,7 @@ void uh_handle_file_request(struct client *cl);
void uh_auth_add(const char *path, const char *user, const char *pass);
+void uh_close_listen_fds(void);
+void uh_close_fds(void);
+
#endif