diff options
Diffstat (limited to 'src/net/ea/loginhandler.h')
-rw-r--r-- | src/net/ea/loginhandler.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/net/ea/loginhandler.h b/src/net/ea/loginhandler.h index 96a228b07..9dc559dab 100644 --- a/src/net/ea/loginhandler.h +++ b/src/net/ea/loginhandler.h @@ -70,8 +70,7 @@ class LoginHandler notfinal : public Net::LoginHandler virtual ServerInfo *getCharServer() const A_WARN_UNUSED = 0; - const Token &getToken() const A_WARN_UNUSED - { return mToken; } + const Token &getToken() const A_WARN_UNUSED; void logout() const override final; @@ -86,21 +85,9 @@ class LoginHandler notfinal : public Net::LoginHandler protected: LoginHandler(); - static void processUpdateHost(Net::MessageIn &msg); - - static void processLoginData(Net::MessageIn &msg); - - static void processLoginError(Net::MessageIn &msg); - virtual void sendLoginRegister(const std::string &username, const std::string &password, const std::string &email) const = 0; - - static std::string mUpdateHost; - static Worlds mWorlds; - static Token mToken; - static bool mVersionResponse; - static bool mRegistrationEnabled; }; } // namespace Ea |