Small cleaning.

This commit is contained in:
James Grogan 2022-12-04 18:13:32 +00:00
parent 70220fc6e9
commit d7fe11913f
26 changed files with 613 additions and 548 deletions

View file

@ -7,16 +7,16 @@
class HttpRequest
{
public:
HttpRequest() = default;
HttpRequest() = default;
void parseMessage(const std::string& message);
void parseMessage(const std::string& message);
private:
void parseFirstLine(const std::string& line);
void parseFirstLine(const std::string& line);
HttpHeader mHeader;
std::string mMethod;
std::string mPath;
std::string mProtocolVersion;
HttpHeader mHeader;
std::string mMethod;
std::string mPath;
std::string mProtocolVersion;
};