move build system to cmake

This commit is contained in:
Nicholas Orlowsky 2024-05-10 06:09:40 -05:00
parent c31db4d2a8
commit 734e37de37
Signed by: nickorlow
GPG key ID: 838827D8C4611687
4 changed files with 21 additions and 53 deletions

View file

@ -6,9 +6,9 @@
#include <netinet/in.h>
#include <sstream>
#include <sys/socket.h>
#include <sys/time.h>
#include <unistd.h>
#include <unordered_map>
#include <sys/time.h>
constexpr int MAX_QUEUE_LENGTH = 100;
@ -79,7 +79,7 @@ public:
int result = recv(client_socket, response, sizeof(response), 0);
if (result < 1) {
return "";
return "";
}
response[buffer_size] = '\0';