python: Added more useful logging to wsgidir.
[ashd.git] / src / htparser.h
... / ...
CommitLineData
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
11int listensock4(int port);
12int listensock6(int port);
13char *formathaddress(struct sockaddr *name, socklen_t namelen);
14void handleplain(int argc, char **argp, char **argv);
15#ifdef HAVE_GNUTLS
16void handlegnussl(int argc, char **argp, char **argv);
17#endif
18
19#endif