LRT13
1.0
Main Page
Namespaces
Classes
Files
File List
All
Classes
Namespaces
Functions
Variables
Enumerations
Enumerator
Network
NetChannel.h
1
#ifndef NET_CHANNEL_H_
2
#define NET_CHANNEL_H_
3
//stupid hack
4
namespace
Network
5
{
6
// minor hack because pre-C++11 compilers move the enum values into the parent namespace.
11
namespace
NetChannel
12
{
13
// Network subchannels are identified by base_channel + [0, 15] for a total of 16 subchannels. -tp
14
enum
Enum
15
{
16
// UNRELIABLE CHANNELS
20
NET_UNRELIABLE
= 0x00,
24
NET_UNRELIABLE_SEQUENCED
= 0x16,
25
26
// RELIABLE CHANNELS
30
NET_RELIABLE
= 0x32,
34
NET_RELIABLE_SEQUENCED
=0x48,
38
NET_RELIABLE_IN_ORDER
= 0x64,
39
};
40
};
41
}
42
43
#endif
Generated on Thu Nov 28 2013 20:16:51 for LRT13 by
1.8.3