summaryrefslogtreecommitdiffhomepage
path: root/contrib/package/uhttpd/src/uhttpd-cgi.h
blob: 4632bcc278b73d6d7cf233a3e9e6897d79606cf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _UHTTPD_CGI_

#include <errno.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <linux/limits.h>

void uh_cgi_request(struct client *cl, struct http_request *req);

struct path_info {
	char *root;
	char *wdir;
	char *phys;
	char *name;
	char *info;
	char *query;
};

#endif