aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver/Server/AuthSession.h
diff options
context:
space:
mode:
authorChaosvex <ch@osvex.com>2016-11-10 23:00:58 +0100
committerShauren <shauren.trinity@gmail.com>2016-11-10 23:00:58 +0100
commited2cd6b34f849f9cc9adb86318457155e47f7314 (patch)
tree6231a8a85c294ba99fc127e7111266c927f3af58 /src/server/authserver/Server/AuthSession.h
parentc4dd6d167601390ad29c0241a30872bd0b5afa5e (diff)
Core/Auth: Resolved authentication bypass
Diffstat (limited to 'src/server/authserver/Server/AuthSession.h')
-rw-r--r--src/server/authserver/Server/AuthSession.h10
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;