diff options
Diffstat (limited to 'src/net/messagein.h')
-rw-r--r-- | src/net/messagein.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/net/messagein.h b/src/net/messagein.h index 255710349..155e2a6b8 100644 --- a/src/net/messagein.h +++ b/src/net/messagein.h @@ -130,9 +130,15 @@ class MessageIn notfinal static uint8_t fromServerDirection(const uint8_t serverDir) A_WARN_UNUSED; - unsigned int getVersion() const noexcept2 A_WARN_UNUSED + int getVersion() const noexcept2 A_WARN_UNUSED { return mVersion; } + int getVersionMain() const noexcept2 A_WARN_UNUSED; + + int getVersionRe() const noexcept2 A_WARN_UNUSED; + + int getVersionZero() const noexcept2 A_WARN_UNUSED; + protected: /** * Constructor. @@ -148,7 +154,7 @@ class MessageIn notfinal * reading it. */ unsigned int mPos; - unsigned int mVersion; + int mVersion; uint16_t mId; /**< The message ID. */ bool mIgnore; }; |