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;