Add authenticator opcode support + auth_probe tool

This commit is contained in:
Kelsi 2026-02-13 00:55:36 -08:00
parent 3a84fece7a
commit d87ba314c1
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,
};