mirror of https://github.com/SeanOMik/libki.git
20 lines
214 B
C
20 lines
214 B
C
|
#pragma once
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace ki
|
||
|
{
|
||
|
namespace protocol
|
||
|
{
|
||
|
namespace control
|
||
|
{
|
||
|
enum class Opcode : uint8_t
|
||
|
{
|
||
|
SERVER_HELLO = 0,
|
||
|
UDP_HELLO = 1,
|
||
|
PING = 3,
|
||
|
PING_RSP = 4,
|
||
|
CLIENT_HELLO = 5
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|