diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-10 16:54:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-10 16:54:46 +0300 |
commit | 7d162145958fccfcc3ba32a7db3b8161cfe83fe2 (patch) | |
tree | d109f74483a9274bca46a41670cc5ec69b50876f /src/net/eathena/searchstorehandler.cpp | |
parent | 8aad60beb37fb0f364b0d8ab5bbe66232eacb676 (diff) | |
download | plus-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/searchstorehandler.cpp')
-rw-r--r-- | src/net/eathena/searchstorehandler.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/eathena/searchstorehandler.cpp b/src/net/eathena/searchstorehandler.cpp index 1507cb92f..7ced22765 100644 --- a/src/net/eathena/searchstorehandler.cpp +++ b/src/net/eathena/searchstorehandler.cpp @@ -20,6 +20,7 @@ #include "net/eathena/searchstorehandler.h" +#include "logger.h" #include "notifymanager.h" #include "net/eathena/messageout.h" @@ -111,6 +112,7 @@ void SearchStoreHandler::select(const int accountId, void SearchStoreHandler::processSearchAck(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; const int count = (msg.readInt16("len") - 7) / 106; msg.readUInt8("is first page"); msg.readUInt8("is next page"); @@ -132,6 +134,7 @@ void SearchStoreHandler::processSearchAck(Net::MessageIn &msg) void SearchStoreHandler::processSearchFailed(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; const int result = msg.readUInt8("result"); switch (result) { @@ -164,12 +167,14 @@ void SearchStoreHandler::processSearchFailed(Net::MessageIn &msg) void SearchStoreHandler::processSearchOpen(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; msg.readInt16("effect"); msg.readUInt8("uses"); } void SearchStoreHandler::processSearchClickAck(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; msg.readInt16("x"); msg.readInt16("y"); } |