ChangeLog 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ENet 1.2.2 (May 20, 2010):
  2. * checksum functionality is now enabled by setting a checksum callback
  3. inside ENetHost instead of being a configure script option
  4. * added totalSentData, totalSentPackets, totalReceivedData, and
  5. totalReceivedPackets counters inside ENetHost for getting usage
  6. statistics
  7. * added enet_host_channel_limit() for limiting the maximum number of
  8. channels allowed by connected peers
  9. * now uses dispatch queues for event dispatch rather than potentially
  10. unscalable array walking
  11. * added no_memory callback that is called when a malloc attempt fails,
  12. such that if no_memory returns rather than aborts (the default behavior),
  13. then the error is propagated to the return value of the API calls
  14. * now uses packed attribute for protocol structures on platforms with
  15. strange alignment rules
  16. * improved autoconf build system contributed by Nathan Brink allowing
  17. for easier building as a shared library
  18. Caveats: If you were using the compile-time option that enabled checksums,
  19. make sure to set the checksum callback inside ENetHost to enet_crc32 to
  20. regain the old behavior.
  21. ENet 1.2.1 (November 12, 2009):
  22. * fixed bug that could cause disconnect events to be dropped
  23. * added thin wrapper around select() for portable usage
  24. * added ENET_SOCKOPT_REUSEADDR socket option
  25. * factored enet_socket_bind()/enet_socket_listen() out of enet_socket_create()
  26. * added contributed Code::Blocks build file
  27. ENet 1.2 (February 12, 2008):
  28. * fixed bug in VERIFY_CONNECT acknowledgement that could cause connect
  29. attempts to occasionally timeout
  30. * fixed acknowledgements to check both the outgoing and sent queues
  31. when removing acknowledged packets
  32. * fixed accidental bit rot in the MSVC project file
  33. * revised sequence number overflow handling to address some possible
  34. disconnect bugs
  35. * added enet_host_check_events() for getting only local queued events
  36. * factored out socket option setting into enet_socket_set_option() so
  37. that socket options are now set separately from enet_socket_create()
  38. Caveats: While this release is superficially protocol compatible with 1.1,
  39. differences in the sequence number overflow handling can potentially cause
  40. random disconnects.
  41. ENet 1.1 (June 6, 2007):
  42. * optional CRC32 just in case someone needs a stronger checksum than UDP
  43. provides (--enable-crc32 configure option)
  44. * the size of packet headers are half the size they used to be (so less
  45. overhead when sending small packets)
  46. * enet_peer_disconnect_later() that waits till all queued outgoing
  47. packets get sent before issuing an actual disconnect
  48. * freeCallback field in individual packets for notification of when a
  49. packet is about to be freed
  50. * ENET_PACKET_FLAG_NO_ALLOCATE for supplying pre-allocated data to a
  51. packet (can be used in concert with freeCallback to support some custom
  52. allocation schemes that the normal memory allocation callbacks would
  53. normally not allow)
  54. * enet_address_get_host_ip() for printing address numbers
  55. * promoted the enet_socket_*() functions to be part of the API now
  56. * a few stability/crash fixes