LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
Enumerations
Network::NetChannel Namespace Reference

Contains an enumeration defining network channels. Each channel has 16 subchannels. More...

Enumerations

enum  Enum {
  NET_UNRELIABLE = 0x00, NET_UNRELIABLE_SEQUENCED = 0x16, NET_RELIABLE = 0x32, NET_RELIABLE_SEQUENCED =0x48,
  NET_RELIABLE_IN_ORDER = 0x64
}
 

Detailed Description

Contains an enumeration defining network channels. Each channel has 16 subchannels.

Author
Tony Peng

Enumeration Type Documentation

Enumerator
NET_UNRELIABLE 

Base channel for an unreliable message. The message is sent and not tracked.

NET_UNRELIABLE_SEQUENCED 

Base channel for an unreliably sequenced message. If packets arrive out of order, older ones are discarded.

NET_RELIABLE 

Base channel for a reliably sent message. Packets are guaranteed to arrive at the destination, but order is not guaranteed.

NET_RELIABLE_SEQUENCED 

Base channel for a reliable sequenced message. Packets are guaranteed to arrive at the destination, but old packets are dropped.

NET_RELIABLE_IN_ORDER 

Base channel for a reliable ordered message. Packets are guaranteed to arrive at the destination in the order they were sent.