From 231de544ee01a05cdaf8609d5d17e913535c9d48 Mon Sep 17 00:00:00 2001 From: dawidg81 Date: Sun, 8 Mar 2026 17:38:47 +0100 Subject: [PATCH] Updated include and added byte receivement --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 65d5e5e..4e8cb3b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,7 @@ #include "Logger.hpp" #include "Socket.hpp" -#include +#include using namespace std; @@ -24,6 +24,7 @@ int main() { * 2. Parse bytes from packet * 3. Put into components understandable for server */ + uint8_t buffer[131] = recv(clientSocket, buffer, sizeof(buffer), 0); } return 0;