LeviLamina
Loading...
Searching...
No Matches
StartupResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RakNet {
6
7enum class StartupResult : int {
8 RaknetStarted = 0,
9 RaknetAlreadyStarted = 1,
10 InvalidSocketDescriptors = 2,
11 InvalidMaxConnections = 3,
12 SocketFamilyNotSupported = 4,
13 SocketPortAlreadyInUse = 5,
14 SocketFailedToBind = 6,
15 SocketFailedTestSend = 7,
16 PortCannotBeZero = 8,
17 FailedToCreateNetworkThread = 9,
18 CouldNotGenerateGuid = 10,
19 StartupOtherFailure = 11,
20};
21
22}