summaryrefslogtreecommitdiffhomepage
path: root/contrib/package/uhttpd/src/uhttpd-file.h
blob: 9e56c3876f2654fc1b515ffbf93e953e2c7e7515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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