LeviLamina
Loading...
Searching...
No Matches
StunMessageType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cricket {
6
7enum class StunMessageType : ushort {
8 StunInvalidMessageType = 0,
9 StunBindingRequest = 1,
10 StunBindingIndication = 17,
11 StunBindingResponse = 257,
12 StunBindingErrorResponse = 273,
13 GoogPingRequest = 512,
14 GoogPingResponse = 768,
15 GoogPingErrorResponse = 784,
16};
17
18}