diff options
author | Chaosvex <ch@osvex.com> | 2016-11-10 23:00:58 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2016-11-10 23:00:58 +0100 |
commit | ed2cd6b34f849f9cc9adb86318457155e47f7314 (patch) | |
tree | 6231a8a85c294ba99fc127e7111266c927f3af58 /src/server/authserver/Server/AuthSession.h | |
parent | c4dd6d167601390ad29c0241a30872bd0b5afa5e (diff) |
Core/Auth: Resolved authentication bypass
Diffstat (limited to 'src/server/authserver/Server/AuthSession.h')
-rw-r--r-- | src/server/authserver/Server/AuthSession.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/authserver/Server/AuthSession.h b/src/server/authserver/Server/AuthSession.h index 027011629eb..98d2cb9fcdb 100644 --- a/src/server/authserver/Server/AuthSession.h +++ b/src/server/authserver/Server/AuthSession.h @@ -34,8 +34,11 @@ struct AuthHandler; enum AuthStatus { - STATUS_CONNECTED = 0, - STATUS_AUTHED + STATUS_CHALLENGE = 0, + STATUS_LOGON_PROOF, + STATUS_RECONNECT_PROOF, + STATUS_AUTHED, + STATUS_CLOSED }; struct AccountInfo @@ -90,9 +93,6 @@ private: BigNumber K; BigNumber _reconnectProof; - bool _sentChallenge; - bool _sentProof; - AuthStatus _status; AccountInfo _accountInfo; std::string _tokenKey; |