summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-15 12:35:41 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-15 12:35:41 +0300
commitd23ec275ea4b350dc616e592714724d66de4599a (patch)
tree61665cefe98218929ed85647c7669b4b3a662102
parenta0f83483c5d9ae0a6b809c93e62697ba399ac246 (diff)
downloadplus-d23ec275ea4b350dc616e592714724d66de4599a.tar.gz
plus-d23ec275ea4b350dc616e592714724d66de4599a.tar.bz2
plus-d23ec275ea4b350dc616e592714724d66de4599a.tar.xz
plus-d23ec275ea4b350dc616e592714724d66de4599a.zip
eathena: add packet CMSG_MAIL_RESET_ATTACH 0x0246.
-rw-r--r--src/net/eathena/mailhandler.cpp6
-rw-r--r--src/net/eathena/mailhandler.h2
-rw-r--r--src/net/eathena/protocol.h1
-rw-r--r--src/net/mailhandler.h2
-rw-r--r--src/net/tmwa/mailhandler.cpp4
-rw-r--r--src/net/tmwa/mailhandler.h2
6 files changed, 17 insertions, 0 deletions
diff --git a/src/net/eathena/mailhandler.cpp b/src/net/eathena/mailhandler.cpp
index ea420cfc4..23e959538 100644
--- a/src/net/eathena/mailhandler.cpp
+++ b/src/net/eathena/mailhandler.cpp
@@ -113,4 +113,10 @@ void MailHandler::setAttach(const int index, const int amount)
outMsg.writeInt32(amount, "amount");
}
+void MailHandler::resetAttach(const int flag)
+{
+ MessageOut outMsg(CMSG_MAIL_RESET_ATTACH);
+ outMsg.writeInt16(static_cast<int16_t>(flag), "flag");
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/mailhandler.h b/src/net/eathena/mailhandler.h
index b6d2b9080..1b4f9f2b5 100644
--- a/src/net/eathena/mailhandler.h
+++ b/src/net/eathena/mailhandler.h
@@ -50,6 +50,8 @@ class MailHandler final : public MessageHandler, public Net::MailHandler
void setAttach(const int index, const int amount) override final;
+ void resetAttach(const int flag) override final;
+
protected:
void processMailOpen(Net::MessageIn &msg) const;
};
diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h
index d28806559..70ffd74e5 100644
--- a/src/net/eathena/protocol.h
+++ b/src/net/eathena/protocol.h
@@ -372,6 +372,7 @@
#define CMSG_MAIL_DELETE_MESSAGE 0x0243
#define CMSG_MAIL_RETURN_MESSAGE 0x0273
#define CMSG_MAIL_SET_ATTACH 0x0247
+#define CMSG_MAIL_RESET_ATTACH 0x0246
#define SMSG_SOLVE_CHAR_NAME 0x0194
#define SMSG_SKILL_CASTING 0x07fb
diff --git a/src/net/mailhandler.h b/src/net/mailhandler.h
index ebad9b7b4..3ceb7625f 100644
--- a/src/net/mailhandler.h
+++ b/src/net/mailhandler.h
@@ -43,6 +43,8 @@ class MailHandler notfinal
virtual void returnMessage(const int msgId) = 0;
virtual void setAttach(const int index, const int amount) = 0;
+
+ virtual void resetAttach(const int flag) = 0;
};
} // namespace Net
diff --git a/src/net/tmwa/mailhandler.cpp b/src/net/tmwa/mailhandler.cpp
index 8d48094d2..dfd69976d 100644
--- a/src/net/tmwa/mailhandler.cpp
+++ b/src/net/tmwa/mailhandler.cpp
@@ -67,4 +67,8 @@ void MailHandler::setAttach(const int index A_UNUSED,
{
}
+void MailHandler::resetAttach(const int flag A_UNUSED)
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/mailhandler.h b/src/net/tmwa/mailhandler.h
index c6c77de26..fb0892211 100644
--- a/src/net/tmwa/mailhandler.h
+++ b/src/net/tmwa/mailhandler.h
@@ -48,6 +48,8 @@ class MailHandler final : public MessageHandler, public Net::MailHandler
void returnMessage(const int msgId) override final;
void setAttach(const int index, const int amount) override final;
+
+ void resetAttach(const int flag) override final;
};
} // namespace TmwAthena