Made htparser listening much more flexible.
[ashd.git] / src / htparser.h
CommitLineData
8774c31b
FT
1#ifndef _ASH_HTPARSER_H
2#define _ASH_HTPARSER_H
3
4struct conn {
5 int (*initreq)(struct conn *, struct hthead *);
6 void *pdata;
7};
8
9void serve(FILE *in, struct conn *conn);
10
11void handleplain(int argc, char **argp, char **argv);
12
13#endif