10 lines
231 B
C#
Raw Normal View History

2024-10-17 17:23:05 +03:00
namespace kcp2k
{
// channel type and header for raw messages
public enum KcpChannel : byte
{
// don't react on 0x00. might help to filter out random noise.
Reliable = 1,
Unreliable = 2
}
}