blob: 464ec1cdcef783aecb8704f8b925b7eb30dac218 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// author : Boris Kolpackov <boris@kolpackov.net>
#include "Protocol.h"
namespace ACE_RMCast
{
u16 const From:: id = 0x0001;
u16 const To:: id = 0x0002;
u16 const Data:: id = 0x0003;
u16 const SN:: id = 0x0004;
u16 const NAK:: id = 0x0005;
u16 const NRTM:: id = 0x0006;
u16 const NoData::id = 0x0007;
u16 const Part:: id = 0x0008;
}
|