LeviLamina
Loading...
Searching...
No Matches
NATTypeDetectionResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RakNet {
6
7enum class NATTypeDetectionResult : int {
8 None = 0,
9 FullCone = 1,
10 AddressRestricted = 2,
11 PortRestricted = 3,
12 Symmetric = 4,
13 Unknown = 5,
14 DetectionInProgress = 6,
15 SupportsUpnp = 7,
16 Count = 8,
17};
18
19}