summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-01-23 23:36:44 +0300
committerAndrei Karas <akaras@inbox.ru>2019-01-25 02:38:22 +0300
commit19366a7eae5cb6862da3212f8d3e16fe0bf9255e (patch)
tree6566eaac715be1d330ba67e46c2e0014dc334e07 /src/net/tmwa
parent2f4a9f411ba4be70663b000228a4ee6227e080ac (diff)
downloadplus-19366a7eae5cb6862da3212f8d3e16fe0bf9255e.tar.gz
plus-19366a7eae5cb6862da3212f8d3e16fe0bf9255e.tar.bz2
plus-19366a7eae5cb6862da3212f8d3e16fe0bf9255e.tar.xz
plus-19366a7eae5cb6862da3212f8d3e16fe0bf9255e.zip
Add packet CMSG_LOGIN_MOBILE_OTP 0x09a3
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/loginhandler.cpp5
-rw-r--r--src/net/tmwa/loginhandler.h3
2 files changed, 8 insertions, 0 deletions
diff --git a/src/net/tmwa/loginhandler.cpp b/src/net/tmwa/loginhandler.cpp
index 88ce7057b..e88069d25 100644
--- a/src/net/tmwa/loginhandler.cpp
+++ b/src/net/tmwa/loginhandler.cpp
@@ -141,4 +141,9 @@ void LoginHandler::updatePacketVersion() const
itemIdLen = 2;
}
+void LoginHandler::sendMobileCode(const BeingId accountId A_UNUSED,
+ const std::string &code A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/loginhandler.h b/src/net/tmwa/loginhandler.h
index ee04d82d3..7539569a0 100644
--- a/src/net/tmwa/loginhandler.h
+++ b/src/net/tmwa/loginhandler.h
@@ -60,6 +60,9 @@ class LoginHandler final : public Ea::LoginHandler
static void requestUpdateHosts();
+ void sendMobileCode(const BeingId accountId,
+ const std::string &code) const override final;
+
private:
void sendLoginRegister(const std::string &restrict username,
const std::string &restrict password,