summaryrefslogtreecommitdiffhomepage
path: root/contrib/package/uhttpd/src/uhttpd-file.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/package/uhttpd/src/uhttpd-file.h')
-rw-r--r--contrib/package/uhttpd/src/uhttpd-file.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/contrib/package/uhttpd/src/uhttpd-file.h b/contrib/package/uhttpd/src/uhttpd-file.h
new file mode 100644
index 0000000000..9e56c3876f
--- /dev/null
+++ b/contrib/package/uhttpd/src/uhttpd-file.h
@@ -0,0 +1,18 @@
+#ifndef _UHTTPD_CGI_
+
+#include <fcntl.h>
+#include <time.h>
+#include <strings.h>
+#include <dirent.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <linux/limits.h>
+
+struct mimetype {
+ const char *extn;
+ const char *mime;
+};
+
+void uh_file_request(struct client *cl, struct http_request *req);
+
+#endif