Initial commit

This commit is contained in:
2019-06-15 12:00:21 +02:00
commit eda5d9df6b
31 changed files with 1328 additions and 0 deletions

13
src/http/request.hpp Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include "../constants/httprequest.hpp"
namespace Http
{
struct Request
{
HttpRequest::Type requestType;
std::string path;
static Request Deserialize(std::vector<char> const & bytes);
};
}