/* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is SniffURI. * * The Initial Developer of the Original Code is * Erik van der Poel . * Portions created by the Initial Developer are Copyright (C) 1998-2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * ***** END LICENSE BLOCK ***** */ #include "html.h" #include "view.h" enum { appTimeConnectSuccess, appTimeConnectFailure, appTimeGetHostByNameSuccess, appTimeGetHostByNameFailure, appTimeReadStream, appTimeTotal, appTimeMax /* must be last */ }; struct App { void (*contentType)(App *app, unsigned char *contentType); void (*html)(App *app, Buf *buf); void (*htmlAttributeName)(App *app, HTML *html, Buf *buf); void (*htmlAttributeValue)(App *app, HTML *html, Buf *buf); void (*htmlDeclaration)(App *app, Buf *buf); void (*htmlProcessingInstruction)(App *app, Buf *buf); void (*htmlTag)(App *app, HTML *html, Buf *buf); void (*htmlText)(App *app, Buf *buf); void (*httpRequest)(App *app, Buf *buf); void (*httpRequestHeaderName)(App *app, Buf *buf); void (*httpRequestHeaderValue)(App *app, Buf *buf); /* pieces of http response other than header names and values */ void (*httpResponse)(App *app, Buf *buf); /* called when Content-Type != text/html or Content-Type missing */ void (*httpResponseBody)(App *app, Buf *buf); void (*httpResponseCharSet)(App *app, unsigned char *charset); void (*httpResponseHeaderName)(App *app, Buf *buf); void (*httpResponseHeaderValue)(App *app, Buf *buf, unsigned char *url); void (*printHTML)(App *app, char *str); void (*status)(App *app, char *message, char *file, int line); void (*time)(App *app, int task, struct timeval *theTime); View view; void *data; }; extern App appDefault; App *appAlloc(void);