diff --git a/src/main.cpp b/src/main.cpp index 81c1f4d..3d4422f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -20,10 +20,11 @@ int main() { SOCKET clientSocket = socket.winAccept(); if(clientSocket == INVALID_SOCKET) continue; /* + * This is where client handling starts. * RECEIVING CLIENT PACKET - * 1. Receive raw bytes - * 2. Parse bytes from packet - * 3. Put into components understandable for server + * 1. Receive raw bytes, + * 2. Parse bytes from packet, + * 3. Put into components understandable for server. */ char buffer[131] = {}; buffer[0] = recv(clientSocket, buffer, sizeof(buffer), 0);