ChangeLog 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ENet 1.2.1 (November 12, 2009):
  2. * fixed bug that could cause disconnect events to be dropped
  3. * added thin wrapper around select() for portable usage
  4. * added ENET_SOCKOPT_REUSEADDR socket option
  5. * factored enet_socket_bind()/enet_socket_listen() out of enet_socket_create()
  6. * added contributed Code::Blocks build file
  7. ENet 1.2 (February 12, 2008):
  8. * fixed bug in VERIFY_CONNECT acknowledgement that could cause connect
  9. attempts to occasionally timeout
  10. * fixed acknowledgements to check both the outgoing and sent queues
  11. when removing acknowledged packets
  12. * fixed accidental bit rot in the MSVC project file
  13. * revised sequence number overflow handling to address some possible
  14. disconnect bugs
  15. * added enet_host_check_events() for getting only local queued events
  16. * factored out socket option setting into enet_socket_set_option() so
  17. that socket options are now set separately from enet_socket_create()
  18. Caveats: While this release is superficially protocol compatible with 1.1,
  19. differences in the sequence number overflow handling can potentially cause
  20. random disconnects.
  21. ENet 1.1 (June 6, 2007):
  22. * optional CRC32 just in case someone needs a stronger checksum than UDP
  23. provides (--enable-crc32 configure option)
  24. * the size of packet headers are half the size they used to be (so less
  25. overhead when sending small packets)
  26. * enet_peer_disconnect_later() that waits till all queued outgoing
  27. packets get sent before issuing an actual disconnect
  28. * freeCallback field in individual packets for notification of when a
  29. packet is about to be freed
  30. * ENET_PACKET_FLAG_NO_ALLOCATE for supplying pre-allocated data to a
  31. packet (can be used in concert with freeCallback to support some custom
  32. allocation schemes that the normal memory allocation callbacks would
  33. normally not allow)
  34. * enet_address_get_host_ip() for printing address numbers
  35. * promoted the enet_socket_*() functions to be part of the API now
  36. * a few stability/crash fixes