From 8d94ad5867c6c082a39d3229e765262a13d7e652 Mon Sep 17 00:00:00 2001 From: dawidg81 Date: Sun, 8 Mar 2026 16:12:25 +0100 Subject: [PATCH] Big and useful note --- src/main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 7045336..0f2f344 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,6 +18,12 @@ int main() { while(socket.running){ SOCKET clientSocket = socket.winAccept(); if(clientSocket == INVALID_SOCKET) continue; + /* + * RECEIVING CLIENT PACKET + * 1. Receive raw bytes + * 2. Parse bytes into packet + * 3. Put into components understandable for server + */ } return 0;