Removed pointless comments
This commit is contained in:
@@ -7,9 +7,6 @@ void HTTPrequest::start() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void HTTPrequest::processRequest() {
|
void HTTPrequest::processRequest() {
|
||||||
//
|
|
||||||
// This is where we will process requests
|
|
||||||
//
|
|
||||||
uint64_t pathHash = Helpers::Pathhash(requestPath);
|
uint64_t pathHash = Helpers::Pathhash(requestPath);
|
||||||
|
|
||||||
// This is very much temp
|
// This is very much temp
|
||||||
@@ -37,9 +34,7 @@ void HTTPrequest::processRequest() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void HTTPrequest::writeData(std::string data) {
|
void HTTPrequest::writeData(std::string data) {
|
||||||
//
|
// Logging here perhaps
|
||||||
// Response here
|
|
||||||
//
|
|
||||||
asio::async_write(sock, asio::buffer(data),
|
asio::async_write(sock, asio::buffer(data),
|
||||||
[](std::error_code, std::size_t) {});
|
[](std::error_code, std::size_t) {});
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user