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