diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2019-06-13 11:07:50 +0200 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2019-10-18 08:56:08 +0200 |
commit | 1a5c656c3169ba525f84145d19ce8c64f2cf1efb (patch) | |
tree | ca8d33a4009c55ce5145482e4af6788966a1fc2f /src/net.h | |
parent | 6294ecdb8bb4eb7049a18c721ee8cb4a53d80a06 (diff) |
Remove transport protocol knowhow from CNetMessage / net processing
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -621,6 +621,7 @@ public: bool m_valid_header = false; bool m_valid_checksum = false; uint32_t m_message_size = 0; // size of the payload + uint32_t m_raw_message_size = 0; // used wire size of the message (including header/checksum) std::string m_command; CNetMessage(const CDataStream& recv_in) : m_recv(std::move(recv_in)) {} |