projects
/
project
/
luci.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
contrib/package: add uhttpd, a drop-in replacement for busybox httpd
[project/luci.git]
/
contrib
/
package
/
uhttpd
/
src
/
uhttpd-cgi.h
1
#ifndef _UHTTPD_CGI_
2
3
#include <errno.h>
4
#include <unistd.h>
5
#include <sys/stat.h>
6
#include <sys/types.h>
7
#include <linux/limits.h>
8
9
void uh_cgi_request(struct client *cl, struct http_request *req);
10
11
struct path_info {
12
char *root;
13
char *wdir;
14
char *phys;
15
char *name;
16
char *info;
17
char *query;
18
};
19
20
#endif