From c83064f8fc9f98dfbc7bd50c857976a6617c5b40 Mon Sep 17 00:00:00 2001 From: cat Date: Thu, 3 Jul 2025 00:04:56 +0300 Subject: [PATCH] Removed pointless comments --- src/HTTP.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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) {}); }