Added an initial implementation of HTTPS.
[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);
13void handleplain(int argc, char **argp, char **argv);
14#ifdef HAVE_GNUTLS
15void handlegnussl(int argc, char **argp, char **argv);
16#endif
17
18#endif