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)  

 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 
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 
16 };
17 
19 {
20 public:
23 
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