Template
1
0

Added QuickDigest5 for MD5 Hashing, added bare bones responding, added Helper namespace, and minor redesign of methods

This commit is contained in:
2025-06-25 23:24:05 +03:00
parent 98c4eafdbe
commit 0e9cbe57d9
9 changed files with 1098 additions and 8 deletions

View File

@@ -15,6 +15,7 @@
#include <istream>
#include <string>
#include <system_error>
#include <unordered_map>
#define IP "127.0.0.1"
#define PORT 8000
@@ -34,7 +35,8 @@ public:
private:
HTTPrequest(asio::io_context &context);
void readData();
void processRequest(std::string request);
void processRequest(std::string requestType, std::string requestPath,
std::unordered_map<std::string, std::string> request);
void writeData(std::string data);
asio::ip::tcp::socket sock;