Browse Source

Update README.md

nxrighthere 6 years ago
parent
commit
9a130a2cf7
1 changed files with 12 additions and 5 deletions
  1. 12 5
      README.md

+ 12 - 5
README.md

@@ -48,8 +48,8 @@ we are trying to change some things, things, which can't be reflected on the mai
 ## Description
 ## Description
 
 
 ENet's purpose is to provide a relatively thin, simple and robust network communication
 ENet's purpose is to provide a relatively thin, simple and robust network communication
-layer on top of UDP (User Datagram Protocol).The primary feature it provides is optional
-reliable, in-order delivery of packets.
+layer on top of UDP (User Datagram Protocol). The primary feature it provides is optional
+reliable, in-order delivery of packets, and fragmentation.
 
 
 ENet omits certain higher level networking features such as authentication, lobbying,
 ENet omits certain higher level networking features such as authentication, lobbying,
 server discovery, encryption, or other similar tasks that are particularly application
 server discovery, encryption, or other similar tasks that are particularly application
@@ -172,24 +172,31 @@ int main() {
                 /* Store any relevant client information here. */
                 /* Store any relevant client information here. */
                 event.peer->data = "Client information";
                 event.peer->data = "Client information";
                 break;
                 break;
+
             case ENET_EVENT_TYPE_RECEIVE:
             case ENET_EVENT_TYPE_RECEIVE:
                 printf("A packet of length %lu containing %s was received from %s on channel %u.\n",
                 printf("A packet of length %lu containing %s was received from %s on channel %u.\n",
                         event.packet->dataLength,
                         event.packet->dataLength,
                         event.packet->data,
                         event.packet->data,
                         event.peer->data,
                         event.peer->data,
                         event.channelID);
                         event.channelID);
-
                 /* Clean up the packet now that we're done using it. */
                 /* Clean up the packet now that we're done using it. */
                 enet_packet_destroy (event.packet);
                 enet_packet_destroy (event.packet);
                 break;
                 break;
 
 
             case ENET_EVENT_TYPE_DISCONNECT:
             case ENET_EVENT_TYPE_DISCONNECT:
-                printf ("%s disconnected.\n", event.peer->data);
+                printf("%s disconnected.\n", event.peer->data);
                 /* Reset the peer's client information. */
                 /* Reset the peer's client information. */
                 event.peer->data = NULL;
                 event.peer->data = NULL;
                 break;
                 break;
 
 
-            case ENET_EVENT_TYPE_NONE: break;
+            case ENET_EVENT_TYPE_DISCONNECT_TIMEOUT:
+                printf("%s disconnected due to timeout.\n", event.peer->data);
+                /* Reset the peer's client information. */
+                event.peer->data = NULL;
+                break;
+
+            case ENET_EVENT_TYPE_NONE:
+                break;
         }
         }
     }
     }