ChangeLog 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. ENet CVS (1-8-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()
  11. ENet 1.1 (June 6, 2007):
  12. * optional CRC32 just in case someone needs a stronger checksum than UDP
  13. provides (--enable-crc32 configure option)
  14. * the size of packet headers are half the size they used to be (so less
  15. overhead when sending small packets)
  16. * enet_peer_disconnect_later() that waits till all queued outgoing
  17. packets get sent before issuing an actual disconnect
  18. * freeCallback field in individual packets for notification of when a
  19. packet is about to be freed
  20. * ENET_PACKET_FLAG_NO_ALLOCATE for supplying pre-allocated data to a
  21. packet (can be used in concert with freeCallback to support some custom
  22. allocation schemes that the normal memory allocation callbacks would
  23. normally not allow)
  24. * enet_address_get_host_ip() for printing address numbers
  25. * promoted the enet_socket_*() functions to be part of the API now
  26. * a few stability/crash fixes