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