summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-10 16:04:21 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-10 16:04:21 +0300
commit24e4e3c241f39c088bd6f9eb471a2c0285c4eebf (patch)
tree793f59481dfd77af416bc003dac5f15f084ef227 /src/net/eathena
parent648b7bf6803ecb250fd095f60ed52c0ac75d0201 (diff)
downloadManaVerse-24e4e3c241f39c088bd6f9eb471a2c0285c4eebf.tar.gz
ManaVerse-24e4e3c241f39c088bd6f9eb471a2c0285c4eebf.tar.bz2
ManaVerse-24e4e3c241f39c088bd6f9eb471a2c0285c4eebf.tar.xz
ManaVerse-24e4e3c241f39c088bd6f9eb471a2c0285c4eebf.zip
Add mailhandler for now empty.
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/generalhandler.cpp4
-rw-r--r--src/net/eathena/generalhandler.h1
-rw-r--r--src/net/eathena/mailhandler.cpp48
-rw-r--r--src/net/eathena/mailhandler.h44
4 files changed, 96 insertions, 1 deletions
diff --git a/src/net/eathena/generalhandler.cpp b/src/net/eathena/generalhandler.cpp
index fb248c80c..1dcedd29d 100644
--- a/src/net/eathena/generalhandler.cpp
+++ b/src/net/eathena/generalhandler.cpp
@@ -49,6 +49,7 @@
#include "net/eathena/inventoryhandler.h"
#include "net/eathena/itemhandler.h"
#include "net/eathena/loginhandler.h"
+#include "net/eathena/mailhandler.h"
#include "net/eathena/network.h"
#include "net/eathena/npchandler.h"
#include "net/eathena/partyhandler.h"
@@ -94,7 +95,8 @@ GeneralHandler::GeneralHandler() :
mSkillHandler(new SkillHandler),
mTradeHandler(new TradeHandler),
mQuestHandler(new QuestHandler),
- mServerFeatures(new ServerFeatures)
+ mServerFeatures(new ServerFeatures),
+ mMailHandler(new MailHandler)
{
static const uint16_t _messages[] =
{
diff --git a/src/net/eathena/generalhandler.h b/src/net/eathena/generalhandler.h
index 0a3dc5c17..8c913a076 100644
--- a/src/net/eathena/generalhandler.h
+++ b/src/net/eathena/generalhandler.h
@@ -79,6 +79,7 @@ class GeneralHandler final : public MessageHandler,
MessageHandlerPtr mTradeHandler;
MessageHandlerPtr mQuestHandler;
ServerFeatures *mServerFeatures;
+ MessageHandlerPtr mMailHandler;
};
} // namespace EAthena
diff --git a/src/net/eathena/mailhandler.cpp b/src/net/eathena/mailhandler.cpp
new file mode 100644
index 000000000..32080b529
--- /dev/null
+++ b/src/net/eathena/mailhandler.cpp
@@ -0,0 +1,48 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2014 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "net/eathena/mailhandler.h"
+
+#include "net/eathena/messageout.h"
+#include "net/eathena/protocol.h"
+
+#include "debug.h"
+
+extern Net::MailHandler *mailHandler;
+
+namespace EAthena
+{
+
+MailHandler::MailHandler() :
+ MessageHandler()
+{
+ static const uint16_t _messages[] =
+ {
+ 0
+ };
+ handledMessages = _messages;
+ mailHandler = this;
+}
+
+void MailHandler::handleMessage(Net::MessageIn &msg)
+{
+}
+
+} // namespace EAthena
diff --git a/src/net/eathena/mailhandler.h b/src/net/eathena/mailhandler.h
new file mode 100644
index 000000000..c3a44cfab
--- /dev/null
+++ b/src/net/eathena/mailhandler.h
@@ -0,0 +1,44 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2014 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef NET_EATHENA_MAILHANDLER_H
+#define NET_EATHENA_MAILHANDLER_H
+
+#include "net/mailhandler.h"
+
+#include "net/eathena/messagehandler.h"
+
+namespace EAthena
+{
+class MessageOut;
+
+class MailHandler final : public MessageHandler, public Net::MailHandler
+{
+ public:
+ MailHandler();
+
+ A_DELETE_COPY(MailHandler)
+
+ void handleMessage(Net::MessageIn &msg) override final;
+};
+
+} // namespace EAthena
+
+#endif // NET_EATHENA_MAILHANDLER_H