diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-06 17:19:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-06 17:29:51 +0300 |
commit | 208da05ae612c118f1f6d91dca7bbd8670cf2897 (patch) | |
tree | f6e4395b08cce28ac52a20ba3dbe2b78322c652b /src/net/eathena/loginhandler.h | |
parent | 4a688fa73264495d6f0db661e6d3d5c4630ed6df (diff) | |
download | plus-208da05ae612c118f1f6d91dca7bbd8670cf2897.tar.gz plus-208da05ae612c118f1f6d91dca7bbd8670cf2897.tar.bz2 plus-208da05ae612c118f1f6d91dca7bbd8670cf2897.tar.xz plus-208da05ae612c118f1f6d91dca7bbd8670cf2897.zip |
eathena: add packets SMSG_SERVER_VERSION_RESPONSE 0x7531
and CMSG_SERVER_VERSION_REQUEST 0x7530
Diffstat (limited to 'src/net/eathena/loginhandler.h')
-rw-r--r-- | src/net/eathena/loginhandler.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/eathena/loginhandler.h b/src/net/eathena/loginhandler.h index eda2c809a..8e30e908a 100644 --- a/src/net/eathena/loginhandler.h +++ b/src/net/eathena/loginhandler.h @@ -60,21 +60,21 @@ class LoginHandler final : public MessageHandler, public Ea::LoginHandler const std::string &restrict newPassword) const override final; + void sendVersion() const; + ServerInfo *getCharServer() const override final A_WARN_UNUSED; static void processLoginError2(Net::MessageIn &msg); static void processUpdateHost2(Net::MessageIn &msg); + static void processServerVersion(Net::MessageIn &msg); + private: void sendLoginRegister(const std::string &restrict username, const std::string &restrict password, const std::string &restrict email) const override final; - - // unused - void processServerVersion(Net::MessageIn &msg A_UNUSED) - { } }; } // namespace EAthena |