diff --git a/src/HTTP.cpp b/src/HTTP.cpp index 06d250c..4f8327f 100644 --- a/src/HTTP.cpp +++ b/src/HTTP.cpp @@ -7,9 +7,6 @@ void HTTPrequest::start() { } void HTTPrequest::processRequest() { - // - // This is where we will process requests - // uint64_t pathHash = Helpers::Pathhash(requestPath); // This is very much temp @@ -37,9 +34,7 @@ void HTTPrequest::processRequest() { } void HTTPrequest::writeData(std::string data) { - // - // Response here - // + // Logging here perhaps asio::async_write(sock, asio::buffer(data), [](std::error_code, std::size_t) {}); }