diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-17 16:34:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-17 16:58:46 +0300 |
commit | 38659dbd75d81edbe336d5311a1cd1184d359b7e (patch) | |
tree | 919c97a5e48c5e9287250eab34cb36ef5f02c21e /src/net/messagein.h | |
parent | c1ba61eb566a0a1a2532690ba3bf7e6498bee06b (diff) | |
download | plus-38659dbd75d81edbe336d5311a1cd1184d359b7e.tar.gz plus-38659dbd75d81edbe336d5311a1cd1184d359b7e.tar.bz2 plus-38659dbd75d81edbe336d5311a1cd1184d359b7e.tar.xz plus-38659dbd75d81edbe336d5311a1cd1184d359b7e.zip |
add support for ignore packets logging.
Option for coma separated packet ids added in misc tab.
Diffstat (limited to 'src/net/messagein.h')
-rw-r--r-- | src/net/messagein.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/messagein.h b/src/net/messagein.h index d05f58b57..181a2a740 100644 --- a/src/net/messagein.h +++ b/src/net/messagein.h @@ -126,7 +126,6 @@ class MessageIn notfinal const char *mData; /**< The message data. */ unsigned int mLength; /**< The length of the data. */ - uint16_t mId; /**< The message ID. */ /** * Actual position in the packet. From 0 to packet->length. @@ -134,6 +133,8 @@ class MessageIn notfinal * reading it. */ unsigned int mPos; + uint16_t mId; /**< The message ID. */ + bool mIgnore; }; } // namespace Net |