LeviLamina
Loading...
Searching...
No Matches
DataChannelPriority.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class DataChannelPriority : int {
8 // bitfield representation
9 VeryLow = 1 << 7,
10 Low = 1 << 8,
11 Medium = 1 << 9,
12 High = 1 << 10,
13};
14
15}