X-Git-Url: https://secure.softndesign.org/git/?a=blobdiff_plain;f=http.h;h=193698ea5ebbec3dd072b262511f7fcb0dd53d3b;hb=refs%2Fheads%2Fmaster;hp=3ec7d5c781b094e3e3276f290686f820d84a4231;hpb=edaecf241ca80916ea2c5c48bb4738ee87d4e96a;p=webserver.git diff --git a/http.h b/http.h index 3ec7d5c..193698e 100644 --- a/http.h +++ b/http.h @@ -1,7 +1,18 @@ #ifndef __HTTP_H__ #define __HTTP_H__ -int processing (unsigned char *data, int len, unsigned char **pdata); +/* type */ + +typedef struct { + char *root; + char *temp; + char *servername; + char *charset; +} conf_t; + +/* functions */ + +int processing (char *data, int len, conf_t *conf, char **pdata); #endif /* __HTTP_H__ */