LeviLamina
Loading...
Searching...
No Matches
AdapterType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace rtc {
6
7enum class AdapterType : int {
8 // bitfield representation
9 Unknown = 0,
10 Ethernet = 1 << 0,
11 Wifi = 1 << 1,
12 Cellular = 1 << 2,
13 Vpn = 1 << 3,
14 Loopback = 1 << 4,
15 Any = 1 << 5,
16 Cellular2g = 1 << 6,
17 Cellular3g = 1 << 7,
18 Cellular4g = 1 << 8,
19 Cellular5g = 1 << 9,
20};
21
22}