Files
Kelsi 3bec2b8657 refactor(protocol-constants): drop unused misnamed SESSION_KEY_HEX_LENGTH
include/game/protocol_constants.hpp declared SESSION_KEY_HEX_LENGTH=40
but the constant was never consumed anywhere in src/ or include/.
The name was also wrong: WoW SRP session keys are 40 *bytes*
(320 bits → 80 hex chars), so neither interpretation of the constant
matched its name.

Removed rather than renamed since no one references it. If a length
constant is added back later, it should be SESSION_KEY_BYTE_LENGTH=40
to match how src/auth/auth_handler.cpp:390 logs the size.
2026-05-15 03:33:14 -07:00
..