Explorar o código

limit number of packets that can be received per iteration of protocol loop

Lee Salzman %!s(int64=10) %!d(string=hai) anos
pai
achega
6ef4e7d277
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      protocol.c

+ 3 - 1
protocol.c

@@ -1191,7 +1191,9 @@ commandError:
 static int
 enet_protocol_receive_incoming_commands (ENetHost * host, ENetEvent * event)
 {
-    for (;;)
+    int packets;
+
+    for (packets = 0; packets < 256; ++ packets)
     {
        int receivedLength;
        ENetBuffer buffer;