openload
0.1.2
About: load testing WWW servers
Fossies
Dox
:
openload-0.1.2.tar.gz
("inofficial" and yet experimental doxygen-generated source code documentation)
Main Page
Classes
Files
File List
File Members
All
Classes
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
http_headers.h
Go to the documentation of this file.
1
#ifndef HTTP_HEADERS_H
2
#define HTTP_HEADERS_H
3
4
class
CHttpHeader
5
{
6
public
:
7
char
*
name
;
8
char
*
value
;
9
10
CHttpHeader
();
11
void
Set
(
const
char
* n,
const
char
* v);
12
virtual
~CHttpHeader
();
13
14
CHttpHeader
*
pNext
;
15
CHttpHeader
*
pPrev
;
16
};
17
18
class
CHttpHeaderList
19
{
20
public
:
21
CHttpHeader
*
pFirst
;
22
CHttpHeader
*
pLast
;
23
24
CHttpHeaderList
();
25
virtual
~CHttpHeaderList
();
26
27
void
Insert
(
CHttpHeader
* pNew);
28
void
Add
(
const
char
* name,
const
char
* value);
29
void
Add
(
const
char
* line);
30
CHttpHeader
*
Find
(
const
char
* name);
31
const
char
*
FindValue
(
const
char
* name);
32
void
Delete
(
const
char
* name);
33
34
void
Dump
();
35
};
36
37
38
#endif // HTTP_HEADERS_H
39
openload-0.1.2
src
http_headers.h
Generated by
1.8.3.1-20130402