uhttpd:
[project/luci.git] / contrib / package / uhttpd / src / uhttpd-file.h
1 #ifndef _UHTTPD_FILE_
2
3 #include <fcntl.h>
4 #include <time.h>
5 #include <strings.h>
6 #include <dirent.h>
7 #include <sys/stat.h>
8 #include <sys/types.h>
9 #include <linux/limits.h>
10
11 struct mimetype {
12         const char *extn;
13         const char *mime;
14 };
15
16 void uh_file_request(
17         struct client *cl, struct http_request *req, struct uh_path_info *pi
18 );
19
20 #endif