summaryrefslogtreecommitdiff
path: root/src/net/ea/chathandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-07 17:09:47 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-07 17:09:47 +0300
commit51ac76e8effd03b968a142b7bd900584d5942a59 (patch)
tree96a1dbae6a5e94b2069c2e331cc1a49a15772ae7 /src/net/ea/chathandler.cpp
parentf50f6794a7e22ef496185cc874d14813236cdca0 (diff)
downloadplus-51ac76e8effd03b968a142b7bd900584d5942a59.tar.gz
plus-51ac76e8effd03b968a142b7bd900584d5942a59.tar.bz2
plus-51ac76e8effd03b968a142b7bd900584d5942a59.tar.xz
plus-51ac76e8effd03b968a142b7bd900584d5942a59.zip
split processWhisperResponse into two functions with net code and without.
Diffstat (limited to 'src/net/ea/chathandler.cpp')
-rw-r--r--src/net/ea/chathandler.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/net/ea/chathandler.cpp b/src/net/ea/chathandler.cpp
index 52e9a7873..6e6b9927e 100644
--- a/src/net/ea/chathandler.cpp
+++ b/src/net/ea/chathandler.cpp
@@ -87,6 +87,12 @@ void ChatHandler::processWhisperResponse(Net::MessageIn &msg)
{
BLOCK_START("ChatHandler::processWhisperResponse")
+ const uint8_t type = msg.readUInt8("response");
+ processWhisperResponseContinue(type);
+}
+
+void ChatHandler::processWhisperResponseContinue(const uint8_t type)
+{
std::string nick;
if (mSentWhispers.empty())
{
@@ -98,7 +104,6 @@ void ChatHandler::processWhisperResponse(Net::MessageIn &msg)
mSentWhispers.pop();
}
- const uint8_t type = msg.readUInt8("response");
switch (type)
{
case 0x00: