minimal mime management
[webserver.git] / http.h
1 #ifndef __HTTP_H__
2 #define __HTTP_H__
3
4 /* type */
5
6 typedef struct {
7 char *root;
8 char *servername;
9 char *charset;
10 } conf_t;
11
12 /* functions */
13
14 int processing (char *data, int len, conf_t *conf, char **pdata);
15
16 #endif /* __HTTP_H__ */
17
18 /* vim: set ts=4 sw=4 et: */