Big and useful note

This commit is contained in:
dawidg81 2026-03-08 16:12:25 +01:00
commit 8d94ad5867

View file

@ -18,6 +18,12 @@ int main() {
while(socket.running){ while(socket.running){
SOCKET clientSocket = socket.winAccept(); SOCKET clientSocket = socket.winAccept();
if(clientSocket == INVALID_SOCKET) continue; 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; return 0;