/*

$Id: status.h,v 1.1 1995/05/17 08:18:52 mwhitson Exp $

*/

/* status codes */
static char S_ok[] =                "200 Document follows";
static char S_bad_request[] =       "400 Bad request";
static char S_unauthorized[] =      "401 Unauthorized";
static char S_forbidden[] =         "403 Forbidden";
static char S_not_found[] =         "404 Not Found";
static char S_internal_error[] =    "500 Internal error";
static char S_not_implemented[] =   "501 Not implemented";

/* encoding types */
static char T_plain[] = "text/plain";
static char T_html[] =  "text/html";

/* random other static strings */
static char header_fmt[] =
"HTTP/1.0 %s\r\n\
Server: diswww/0.2alpha\r\n\
MIME-version: 1.0\r\n\
Content-type: %s\r\n\r\n";

/* high bogosity area =) */
static char reply_fmt[] = "<TITLE>Thank you for testing</TITLE><H1>Thanks!!!</H1>\r\nThis is what I know about your browser:<p>\r\n<PRE>%s</PRE>\r\n";
