LeviLamina
Loading...
Searching...
No Matches
DtlsTransportState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class DtlsTransportState : int {
8 KNew = 0,
9 KConnecting = 1,
10 KConnected = 2,
11 KClosed = 3,
12 KFailed = 4,
13 KNumValues = 5,
14};
15
16}