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