summaryrefslogtreecommitdiff
path: root/src/net/eathena/familyhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-10 16:54:46 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-10 16:54:46 +0300
commit7d162145958fccfcc3ba32a7db3b8161cfe83fe2 (patch)
treed109f74483a9274bca46a41670cc5ec69b50876f /src/net/eathena/familyhandler.cpp
parent8aad60beb37fb0f364b0d8ab5bbe66232eacb676 (diff)
downloadplus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.gz
plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.bz2
plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.xz
plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.zip
Mark all unimplimented packets with UNIMPLIMENTEDPACKET attribute.
Diffstat (limited to 'src/net/eathena/familyhandler.cpp')
-rw-r--r--src/net/eathena/familyhandler.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/eathena/familyhandler.cpp b/src/net/eathena/familyhandler.cpp
index 9a8307d90..a3ac3c7f5 100644
--- a/src/net/eathena/familyhandler.cpp
+++ b/src/net/eathena/familyhandler.cpp
@@ -20,6 +20,8 @@
#include "net/eathena/familyhandler.h"
+#include "logger.h"
+
#include "being/being.h"
#include "net/eathena/messageout.h"
@@ -84,6 +86,7 @@ void FamilyHandler::askForChild(const Being *const being)
void FamilyHandler::processAskForChild(Net::MessageIn &msg)
{
+ UNIMPLIMENTEDPACKET;
msg.readInt32("account id who ask");
msg.readInt32("acoount id for other parent");
msg.readString(24, "name who ask");
@@ -91,6 +94,7 @@ void FamilyHandler::processAskForChild(Net::MessageIn &msg)
void FamilyHandler::processCallPartner(Net::MessageIn &msg)
{
+ UNIMPLIMENTEDPACKET;
msg.readString(24, "name");
}
@@ -104,6 +108,7 @@ void FamilyHandler::askForChildReply(const bool accept)
void FamilyHandler::processDivorced(Net::MessageIn &msg)
{
+ UNIMPLIMENTEDPACKET;
msg.readString(24, "name");
}