diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | callbacks.c | 2 | ||||
-rwxr-xr-x | docs/mainpage.dox | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ ENet 1.2.2 (May 20, 2010): * checksum functionality is now enabled by setting a checksum callback -inside ENetHost instead of compile time option +inside ENetHost instead of being a configure script option * added totalSentData, totalSentPackets, totalReceivedData, and totalReceivedPackets counters inside ENetHost for getting usage statistics diff --git a/callbacks.c b/callbacks.c index 250b967..a062694 100644 --- a/callbacks.c +++ b/callbacks.c @@ -22,7 +22,7 @@ enet_initialize_with_callbacks (ENetVersion version, const ENetCallbacks * inits if (inits -> rand != NULL) callbacks.rand = inits -> rand; - if (version >= ENET_VERSION_CREATE(1, 2, 2)) + if (version >= ENET_VERSION_CREATE (1, 2, 2)) { if (inits -> no_memory != NULL) callbacks.no_memory = inits -> no_memory; diff --git a/docs/mainpage.dox b/docs/mainpage.dox index b8876ba..eafb0be 100755 --- a/docs/mainpage.dox +++ b/docs/mainpage.dox @@ -36,7 +36,7 @@ or dependent tasks. You can retrieve the source to ENet by downloading it in either .tar.gz form or accessing the cvs distribution directly. -The most recent stable release (1.2.1) can be downloaded <a href="http://enet.bespin.org/download/enet-1.2.1.tar.gz">here</a>. +The most recent stable release (1.2.2) can be downloaded <a href="http://enet.bespin.org/download/enet-1.2.2.tar.gz">here</a>. To access ENet via anonymous CVS, you must use the CVSROOT :pserver:anonymous\@bespin.org:/var/lib/cvs/enet with an empty |