X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fwebserver.h;h=dc142d0d1a08e7a7887efbb0cbb078e7e8e570a1;hb=HEAD;hp=47bb4f860dc2009a946cbbd454dcdd2d25ddcc71;hpb=6334d131ad62d7f54cddbc262187a8f6e8cc1d6a;p=citadel.git diff --git a/webcit/webserver.h b/webcit/webserver.h index 47bb4f860..dc142d0d1 100644 --- a/webcit/webserver.h +++ b/webcit/webserver.h @@ -1,13 +1,26 @@ -/* $Id$ */ +/* + * Copyright (c) 1996-2013 by the citadel.org team + * + * This program is open source software. You can redistribute it and/or + * modify it under the terms of the GNU General Public License, version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + extern char *static_dirs[PATH_MAX]; /**< Web representation */ -extern char *static_content_dirs[PATH_MAX]; /**< Disk representation */ extern int ndirs; extern char socket_dir[PATH_MAX]; -int client_getln(int sock, char *buf, int bufsiz); -int client_read(int sock, char *buf, int bytes); -int client_read_to(int sock, char *buf, int bytes, int timeout); -ssize_t client_write(const void *buf, size_t count); -int lprintf(int loglevel, const char *format, ...); -void wc_backtrace(void); +extern char *default_landing_page; + +int ClientGetLine(ParsedHttpHdrs *Hdr, StrBuf *Target); +int client_read_to(ParsedHttpHdrs *Hdr, StrBuf *Target, int bytes, int timeout); +void wc_backtrace(long LogLevel); +void ShutDownWebcit(void); +void shutdown_ssl(void); + +