Skip to content

RakNet - v0.5.6

Compare
Choose a tag to compare
@sylvrs sylvrs released this 27 Feb 06:54
· 169 commits to master since this release

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 just 1)
  • 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 now ConnectionEvent.ReceivedMessage(message)