ChangeLog 1.6 KB

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