LeviLamina
Loading...
Searching...
No Matches
IceCandidateType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class IceCandidateType : int {
8 KHost = 0,
9 KSrflx = 1,
10 KPrflx = 2,
11 KRelay = 3,
12};
13
14}