Big and useful note
This commit is contained in:
parent
63faee1ee5
commit
8d94ad5867
1 changed files with 6 additions and 0 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue