LeviLamina
Loading...
Searching...
No Matches
ConnectionAttemptResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RakNet {
6
7enum class ConnectionAttemptResult : int {
8 ConnectionAttemptStarted = 0,
9 InvalidParameter = 1,
10 CannotResolveDomainName = 2,
11 AlreadyConnectedToEndpoint = 3,
12 ConnectionAttemptAlreadyInProgress = 4,
13 SecurityInitializationFailed = 5,
14};
15
16}