ace/Source/ACE.Server/Network/Enum/SessionState.cs
fartwhif ce2b010e69
session termination and boot command enhancement (#1653)
improved session termination and logging
improved command parameter parsing
session termination due to network problems should not be sending anything
refactor session termination terminology
moved textual session termination reasons to the same file as the termination reasons enum
added optional reason to boot command
boot axe man, char, griefing and spamming chat
boot 0x5000000C, iid
boot 1342177292, iid
2019-04-12 18:07:45 -04:00

11 lines
209 B
C#

namespace ACE.Server.Network.Enum
{
public enum SessionState
{
AuthLoginRequest,
AuthConnectResponse,
AuthConnected,
WorldConnected,
TerminationStarted,
}
}