mirror of
https://github.com/WowLegacyCore/HermesProxy
synced 2026-08-14 20:32:05 -04:00
16 lines
456 B
C#
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
|
|
}
|