ChangeLog 2.3 KB

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