mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
* HTTP.h : add base class HTTPMsg
This commit is contained in:
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;
|
||||||
|
|||||||
Reference in New Issue
Block a user