LeviLamina
Loading...
Searching...
No Matches
IceConnectionState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cricket {
6
7enum class IceConnectionState : int {
8 KIceConnectionConnecting = 0,
9 KIceConnectionFailed = 1,
10 KIceConnectionConnected = 2,
11 KIceConnectionCompleted = 3,
12};
13
14}