Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (20 sloc)
1.42 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <PacketGroup Name="CorePackets" PacketStart="0"> | |
| <Packet Name="InitiateConnectionPacket" Desc="This packet is used to initiate a new connection"> | |
| <Member Type="AzNetworking::UdpPacketEncodingBuffer" Name="handshakeBuffer" /> | |
| </Packet> | |
| <Packet Name="ConnectionHandshakePacket" Desc="This packet is used to negotiate the handshake of a new connection"> | |
| <Member Type="AzNetworking::UdpPacketEncodingBuffer" Name="handshakeBuffer" /> | |
| </Packet> | |
| <Packet Name="TerminateConnectionPacket" Desc="This packet is used to gracefully terminate an existing connection"> | |
| <Member Type="AzNetworking::DisconnectReason" Name="disconnectReason" Init="AzNetworking::DisconnectReason::None" /> | |
| </Packet> | |
| <Packet Name="HeartbeatPacket" Desc="This packet is used to keep an established connection alive" /> | |
| <Packet Name="FragmentedPacket" Desc="This packet is used to segment a packet that exceeds a connections MTU"> | |
| <Member Type="AzNetworking::SequenceId" Name="unfragmentedSequence" Init="AzNetworking::InvalidSequenceId" /> | |
| <Member Type="AzNetworking::SequenceId" Name="fragmentSequence" Init="AzNetworking::InvalidSequenceId" /> | |
| <Member Type="uint8_t" Name="chunkIndex" Init="0" /> | |
| <Member Type="uint8_t" Name="chunkCount" Init="0" /> | |
| <Member Type="AzNetworking::ChunkBuffer" Name="chunkBuffer" /> | |
| </Packet> | |
| </PacketGroup> |