RakNet - v0.5.6
Changes:
- All connection events now have a proper
toString()
version - Little endian versions of number types are no longer surrounded by their inline types (i.e.,
Int24LE(value=1)
is now just1
) - A base exception (
ConnectionException
) has been added. It is not used anywhere yet, but it will be used for handling any exceptions and handling them gracefully, rather than allowing the server to just crash and burn.
Bug fixes:
Acknowledge
/NAcknowledge
messages are now decoded from the buffer (Note: Full handling hasn't been implemented yet)- InternalHandler will no longer try to parse a frame if it isn't fully assembled
Breaking changes:
ConnectionEvent.Received(message)
is nowConnectionEvent.ReceivedMessage(message)