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