2012-05-29 19:05:34 -07:00
|
|
|
ENet 1.3.4 (May 29, 2012):
|
|
|
|
* added enet_peer_ping_interval() for configuring per-peer ping intervals
|
|
|
|
* added enet_peer_timeout() for configuring per-peer timeouts
|
|
|
|
* added protocol packet size limits
|
|
|
|
|
2011-06-28 08:34:32 -07:00
|
|
|
ENet 1.3.3 (June 28, 2011):
|
|
|
|
|
|
|
|
* fixed bug with simultaneous disconnects not dispatching events
|
|
|
|
|
2011-05-31 00:48:27 -07:00
|
|
|
ENet 1.3.2 (May 31, 2011):
|
|
|
|
|
|
|
|
* added support for unreliable packet fragmenting via the packet flag
|
|
|
|
ENET_PACKET_FLAG_UNRELIABLE_FRAGMENT
|
|
|
|
* fixed regression in unreliable packet queuing
|
|
|
|
* added check against received port to limit some forms of IP-spoofing
|
|
|
|
|
2011-02-09 19:54:08 -07:00
|
|
|
ENet 1.3.1 (February 10, 2011):
|
2010-12-20 05:30:10 -07:00
|
|
|
|
2011-01-31 01:27:39 -07:00
|
|
|
* fixed bug in tracking of reliable data in transit
|
2010-12-20 05:30:10 -07:00
|
|
|
* reliable data window size now scales with the throttle
|
2010-12-23 14:17:24 -07:00
|
|
|
* fixed bug in fragment length calculation when checksums are used
|
2010-12-20 05:30:10 -07:00
|
|
|
|
2010-06-09 14:16:23 -07:00
|
|
|
ENet 1.3.0 (June 5, 2010):
|
|
|
|
|
|
|
|
* enet_host_create() now requires the channel limit to be specified as
|
|
|
|
a parameter
|
|
|
|
* enet_host_connect() now accepts a data parameter which is supplied
|
|
|
|
to the receiving receiving host in the event data field for a connect event
|
|
|
|
* added an adaptive order-2 PPM range coder as a built-in compressor option
|
|
|
|
which can be set with enet_host_compress_with_range_coder()
|
|
|
|
* added support for packet compression configurable with a callback
|
|
|
|
* improved session number handling to not rely on the packet checksum
|
|
|
|
field, saving 4 bytes per packet unless the checksum option is used
|
|
|
|
* removed the dependence on the rand callback for session number handling
|
|
|
|
|
|
|
|
Caveats: This version is not protocol compatible with the 1.2 series or
|
|
|
|
earlier. The enet_host_connect and enet_host_create API functions require
|
|
|
|
supplying additional parameters.
|
|
|
|
|
2011-06-28 08:34:32 -07:00
|
|
|
ENet 1.2.5 (June 28, 2011):
|
|
|
|
|
|
|
|
* fixed bug with simultaneous disconnects not dispatching events
|
|
|
|
|
2011-05-31 00:48:27 -07:00
|
|
|
ENet 1.2.4 (May 31, 2011):
|
|
|
|
|
|
|
|
* fixed regression in unreliable packet queuing
|
|
|
|
* added check against received port to limit some forms of IP-spoofing
|
|
|
|
|
|
|
|
ENet 1.2.3 (February 10, 2011):
|
|
|
|
|
|
|
|
* fixed bug in tracking reliable data in transit
|
|
|
|
|
2010-06-05 13:31:31 -07:00
|
|
|
ENet 1.2.2 (June 5, 2010):
|
2010-05-13 10:02:28 -07:00
|
|
|
|
2010-05-20 09:55:27 -07:00
|
|
|
* checksum functionality is now enabled by setting a checksum callback
|
2010-05-20 14:19:44 -07:00
|
|
|
inside ENetHost instead of being a configure script option
|
2010-05-14 16:41:14 -07:00
|
|
|
* added totalSentData, totalSentPackets, totalReceivedData, and
|
|
|
|
totalReceivedPackets counters inside ENetHost for getting usage
|
|
|
|
statistics
|
2010-05-14 11:20:20 -07:00
|
|
|
* added enet_host_channel_limit() for limiting the maximum number of
|
|
|
|
channels allowed by connected peers
|
2010-05-13 10:02:28 -07:00
|
|
|
* now uses dispatch queues for event dispatch rather than potentially
|
|
|
|
unscalable array walking
|
2010-05-13 19:04:42 -07:00
|
|
|
* added no_memory callback that is called when a malloc attempt fails,
|
|
|
|
such that if no_memory returns rather than aborts (the default behavior),
|
|
|
|
then the error is propagated to the return value of the API calls
|
2010-05-13 10:02:28 -07:00
|
|
|
* now uses packed attribute for protocol structures on platforms with
|
|
|
|
strange alignment rules
|
2010-05-20 13:27:21 -07:00
|
|
|
* improved autoconf build system contributed by Nathan Brink allowing
|
|
|
|
for easier building as a shared library
|
|
|
|
|
|
|
|
Caveats: If you were using the compile-time option that enabled checksums,
|
|
|
|
make sure to set the checksum callback inside ENetHost to enet_crc32 to
|
2010-05-20 14:19:44 -07:00
|
|
|
regain the old behavior. The ENetCallbacks structure has added new fields,
|
|
|
|
so make sure to clear the structure to zero before use if
|
|
|
|
using enet_initialize_with_callbacks().
|
2010-05-13 10:02:28 -07:00
|
|
|
|
2009-11-12 17:48:41 -07:00
|
|
|
ENet 1.2.1 (November 12, 2009):
|
2008-09-15 16:11:22 -07:00
|
|
|
|
2009-11-12 17:48:41 -07:00
|
|
|
* fixed bug that could cause disconnect events to be dropped
|
2008-09-15 16:11:22 -07:00
|
|
|
* added thin wrapper around select() for portable usage
|
|
|
|
* added ENET_SOCKOPT_REUSEADDR socket option
|
|
|
|
* factored enet_socket_bind()/enet_socket_listen() out of enet_socket_create()
|
2009-11-12 17:48:41 -07:00
|
|
|
* added contributed Code::Blocks build file
|
2008-09-15 16:11:22 -07:00
|
|
|
|
2008-02-12 18:31:07 -07:00
|
|
|
ENet 1.2 (February 12, 2008):
|
2007-10-13 19:14:43 -07:00
|
|
|
|
2008-01-09 07:14:09 -07:00
|
|
|
* fixed bug in VERIFY_CONNECT acknowledgement that could cause connect
|
|
|
|
attempts to occasionally timeout
|
2007-10-13 19:14:43 -07:00
|
|
|
* fixed acknowledgements to check both the outgoing and sent queues
|
|
|
|
when removing acknowledged packets
|
|
|
|
* fixed accidental bit rot in the MSVC project file
|
|
|
|
* revised sequence number overflow handling to address some possible
|
|
|
|
disconnect bugs
|
|
|
|
* added enet_host_check_events() for getting only local queued events
|
2008-02-12 18:31:07 -07:00
|
|
|
* factored out socket option setting into enet_socket_set_option() so
|
|
|
|
that socket options are now set separately from enet_socket_create()
|
|
|
|
|
|
|
|
Caveats: While this release is superficially protocol compatible with 1.1,
|
|
|
|
differences in the sequence number overflow handling can potentially cause
|
|
|
|
random disconnects.
|
2007-10-13 19:14:43 -07:00
|
|
|
|
2007-06-06 15:19:06 -07:00
|
|
|
ENet 1.1 (June 6, 2007):
|
|
|
|
|
|
|
|
* optional CRC32 just in case someone needs a stronger checksum than UDP
|
|
|
|
provides (--enable-crc32 configure option)
|
|
|
|
* the size of packet headers are half the size they used to be (so less
|
|
|
|
overhead when sending small packets)
|
|
|
|
* enet_peer_disconnect_later() that waits till all queued outgoing
|
|
|
|
packets get sent before issuing an actual disconnect
|
|
|
|
* freeCallback field in individual packets for notification of when a
|
|
|
|
packet is about to be freed
|
|
|
|
* ENET_PACKET_FLAG_NO_ALLOCATE for supplying pre-allocated data to a
|
|
|
|
packet (can be used in concert with freeCallback to support some custom
|
|
|
|
allocation schemes that the normal memory allocation callbacks would
|
|
|
|
normally not allow)
|
|
|
|
* enet_address_get_host_ip() for printing address numbers
|
|
|
|
* promoted the enet_socket_*() functions to be part of the API now
|
|
|
|
* a few stability/crash fixes
|
|
|
|
|
|
|
|
|