LeviLamina
Loading...
Searching...
No Matches
DisconnectFailReason.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Connection {
6
7enum class DisconnectFailReason : int {
8 Unknown = 0,
9 CantConnectNoInternet = 1,
10 NoPermissions = 2,
11 UnrecoverableError = 3,
12 ThirdPartyBlocked = 4,
13 ThirdPartyNoInternet = 5,
14 ThirdPartyBadIP = 6,
15 ThirdPartyNoServerOrServerLocked = 7,
16 VersionMismatch = 8,
17 SkinIssue = 9,
18 InviteSessionNotFound = 10,
19 EduLevelSettingsMissing = 11,
20 LocalServerNotFound = 12,
21 LegacyDisconnect = 13,
22 UserLeaveGameAttempted = 14,
23 PlatformLockedSkinsError = 15,
24 RealmsWorldUnassigned = 16,
25 RealmsServerCantConnect = 17,
26 RealmsServerHidden = 18,
27 RealmsServerDisabledBeta = 19,
28 RealmsServerDisabled = 20,
29 CrossPlatformDisabled = 21,
30 CantConnect = 22,
31 SessionNotFound = 23,
32 ClientSettingsIncompatibleWithServer = 24,
33 ServerFull = 25,
34 InvalidPlatformSkin = 26,
35 EditionVersionMismatch = 27,
36 EditionMismatch = 28,
37 LevelNewerThanExeVersion = 29,
38 NoFailOccurred = 30,
39 BannedSkin = 31,
40 Timeout = 32,
41 ServerNotFound = 33,
42 OutdatedServer = 34,
43 OutdatedClient = 35,
44 NoPremiumPlatform = 36,
45 MultiplayerDisabled = 37,
46 NoWiFi = 38,
47 WorldCorruption = 39,
48 NoReason = 40,
49 Disconnected = 41,
50 InvalidPlayer = 42,
51 LoggedInOtherLocation = 43,
52 ServerIdConflict = 44,
53 NotAllowed = 45,
54 NotAuthenticated = 46,
55 InvalidTenant = 47,
56 UnknownPacket = 48,
57 UnexpectedPacket = 49,
58 InvalidCommandRequestPacket = 50,
59 HostSuspended = 51,
60 LoginPacketNoRequest = 52,
61 LoginPacketNoCert = 53,
62 MissingClient = 54,
63 Kicked = 55,
64 KickedForExploit = 56,
65 KickedForIdle = 57,
66 ResourcePackProblem = 58,
67 IncompatiblePack = 59,
68 OutOfStorage = 60,
69 InvalidLevel = 61,
70 DisconnectPacketDeprecated = 62,
71 BlockMismatch = 63,
72 InvalidHeights = 64,
73 InvalidWidths = 65,
74 ConnectionLostDeprecated = 66,
75 ZombieConnection = 67,
76 Shutdown = 68,
77 ReasonNotSetDeprecated = 69,
78 LoadingStateTimeout = 70,
79 ResourcePackLoadingFailed = 71,
80 SearchingForSessionLoadingScreenFailed = 72,
81 NetherNetProtocolVersion = 73,
82 SubsystemStatusError = 74,
83 EmptyAuthFromDiscovery = 75,
84 EmptyUrlFromDiscovery = 76,
85 ExpiredAuthFromDiscovery = 77,
86 UnknownSignalServiceSignInFailure = 78,
87 XBLJoinLobbyFailure = 79,
88 UnspecifiedClientInstanceDisconnection = 80,
89 NetherNetSessionNotFound = 81,
90 NetherNetCreatePeerConnection = 82,
91 NetherNetICE = 83,
92 NetherNetConnectRequest = 84,
93 NetherNetConnectResponse = 85,
94 NetherNetNegotiationTimeout = 86,
95 NetherNetInactivityTimeout = 87,
96 StaleConnectionBeingReplaced = 88,
97 RealmsSessionNotFoundDeprecated = 89,
98 BadPacket = 90,
99 NetherNetFailedToCreateOffer = 91,
100 NetherNetFailedToCreateAnswer = 92,
101 NetherNetFailedToSetLocalDescription = 93,
102 NetherNetFailedToSetRemoteDescription = 94,
103 NetherNetNegotiationTimeoutWaitingForResponse = 95,
104 NetherNetNegotiationTimeoutWaitingForAccept = 96,
105 NetherNetIncomingConnectionIgnored = 97,
106 NetherNetSignalingParsingFailure = 98,
107 NetherNetSignalingUnknownError = 99,
108 NetherNetSignalingUnicastDeliveryFailed = 100,
109 NetherNetSignalingBroadcastDeliveryFailed = 101,
110 NetherNetSignalingGenericDeliveryFailed = 102,
111 EditorMismatchEditorWorld = 103,
112 EditorMismatchVanillaWorld = 104,
113 WorldTransferNotPrimaryClient = 105,
114 RequestServerShutdown = 106,
115 ClientGameSetupCancelled = 107,
116 ClientGameSetupFailed = 108,
117 NoVenue = 109,
118 NetherNetSignalingSigninFailed = 110,
119 SessionAccessDenied = 111,
120 ServiceSigninIssue = 112,
121 NetherNetNoSignalingChannel = 113,
122 NetherNetNotLoggedIn = 114,
123 NetherNetClientSignalingError = 115,
124 SubClientLoginDisabled = 116,
125 DeepLinkTryingToOpenDemoWorldWhileSignedIn = 117,
126};
127
128}