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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
#include "base.h"
#ifndef __HTTPD_H__
#define __HTTPD_H__
#include <string>
#include <sstream>
class HTTPRequest : public classbase
{
protected:
std::string type;
std::string document;
std::string ipaddr;
std::stringstream* headers;
public:
void* sock;
HTTPRequest(const std::string &request_type, const std::string &uri, std::stringstream* hdr, void* opaque, const std::string &ip)
: type(request_type), document(uri), ipaddr(ip), headers(hdr), sock(opaque)
{
}
std::stringstream* GetHeaders()
{
return headers;
}
std::string& GetType()
{
return type;
}
std::string& GetURI()
{
return document;
}
std::string& GetIP()
{
return ipaddr;
}
};
class HTTPDocument : public classbase
{
protected:
std::stringstream* document;
int responsecode;
std::string extraheaders;
public:
void* sock;
HTTPDocument(void* opaque, std::stringstream* doc, int response, const std::string &extra) : document(doc), responsecode(response), extraheaders(extra), sock(opaque)
{
}
std::stringstream* GetDocument()
{
return this->document;
}
unsigned long GetDocumentSize()
{
return this->document->str().length();
}
int GetResponseCode()
{
return this->responsecode;
}
std::string& GetExtraHeaders()
{
return this->extraheaders;
}
};
#endif
//httpr(request_type,uri,headers,this,this->GetIP());
|