1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
/*
* Soft: Perform a GET query to a remote HTTP/HTTPS server.
* Set a timer to compute global remote server response
* time.
*
* Part: parser.c include file.
*
* Version: $Id: html.h,v 1.1.12 2006/03/09 01:22:13 acassen Exp $
*
* Authors: Alexandre Cassen, <acassen@linux-vs.org>
*
* 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.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
*
* Copyright (C) 2001-2006 Alexandre Cassen, <acassen@linux-vs.org>
*/
#ifndef _HTML_H
#define _HTML_H
/* HTTP header tag */
#define CONTENT_LENGTH "Content-Length:"
/* Prototypes */
extern int extract_content_length(char *buffer, int size);
extern int extract_status_code(char *buffer, int size);
extern char *extract_html(char *buffer, int size_buffer);
#endif
|