ChangeLog 1.2 KB

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