Add authenticator opcode support + auth_probe tool

This commit is contained in:
Kelsi 2026-02-13 00:55:36 -08:00
parent fd468ce793
commit 6a44f02e0c
8 changed files with 188 additions and 15 deletions

View file

@ -11,6 +11,7 @@ enum class AuthOpcode : uint8_t {
LOGON_PROOF = 0x01,
RECONNECT_CHALLENGE = 0x02,
RECONNECT_PROOF = 0x03,
AUTHENTICATOR = 0x04, // TrinityCore-style Google Authenticator token
REALM_LIST = 0x10,
};