mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-23 17:36:37 +02:00
* HTTP.h : add base class HTTPMsg
This commit is contained in:
parent
f6103d3841
commit
50ff0d251a
1 changed files with 5 additions and 3 deletions
8
HTTP.h
8
HTTP.h
|
@ -54,8 +54,11 @@ namespace http {
|
||||||
std::string to_string ();
|
std::string to_string ();
|
||||||
};
|
};
|
||||||
|
|
||||||
struct HTTPReq {
|
struct HTTPMsg {
|
||||||
std::map<std::string, std::string> headers;
|
std::map<std::string, std::string> headers;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct HTTPReq : HTTPMsg {
|
||||||
std::string version;
|
std::string version;
|
||||||
std::string method;
|
std::string method;
|
||||||
std::string uri;
|
std::string uri;
|
||||||
|
@ -75,8 +78,7 @@ namespace http {
|
||||||
std::string to_string();
|
std::string to_string();
|
||||||
};
|
};
|
||||||
|
|
||||||
struct HTTPRes {
|
struct HTTPRes : HTTPMsg {
|
||||||
std::map<std::string, std::string> headers;
|
|
||||||
std::string version;
|
std::string version;
|
||||||
std::string status;
|
std::string status;
|
||||||
unsigned short int code;
|
unsigned short int code;
|
||||||
|
|
Loading…
Add table
Reference in a new issue