ChangeLog 863 B

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