Mailing list header changes (fuck you Google)
[citadel.git] / webcit / webserver.h
1 /*
2  * Copyright (c) 1996-2013 by the citadel.org team
3  *
4  * This program is open source software.  You can redistribute it and/or
5  * modify it under the terms of the GNU General Public License, version 3.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU General Public License for more details.
11  */
12
13
14 extern char *static_dirs[PATH_MAX];          /**< Web representation */
15 extern int ndirs;
16 extern char socket_dir[PATH_MAX];
17
18 extern char *default_landing_page;
19
20 int ClientGetLine(ParsedHttpHdrs *Hdr, StrBuf *Target);
21 int client_read_to(ParsedHttpHdrs *Hdr, StrBuf *Target, int bytes, int timeout);
22 void wc_backtrace(long LogLevel);
23 void ShutDownWebcit(void);
24 void shutdown_ssl(void);
25
26