wow-hermesproxy/HermesProxy/Auth/AuthCommand.cs
2022-11-29 13:22:55 +01:00

16 lines
456 B
C#

namespace HermesProxy.Auth
{
// ReSharper disable InconsistentNaming
public enum AuthCommand : byte
{
LOGON_CHALLENGE = 0x00,
LOGON_PROOF = 0x01,
REALM_LIST = 0x10,
TRANSFER_INITIATE = 0x30,
TRANSFER_DATA = 0x31,
TRANSFER_ACCEPT = 0x32,
TRANSFER_RESUME = 0x33,
TRANSFER_CANCEL = 0x34
}
// ReSharper restore InconsistentNaming
}