ChangeLog 2.4 KB

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