LeviLamina
Loading...
Searching...
No Matches
ProtocolType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cricket {
6
7enum class ProtocolType : int {
8 Udp = 0,
9 Tcp = 1,
10 Ssltcp = 2,
11 Tls = 3,
12 Last = 3,
13};
14
15}