| 949 | bool ReceiveMsgBytes(std::span<const uint8_t> msg_bytes, bool& complete) EXCLUSIVE_LOCKS_REQUIRED(!cs_vRecv); |
| 950 | |
| 951 | void SetCommonVersion(int greatest_common_version) |
| 952 | { |
| 953 | Assume(m_greatest_common_version == INIT_PROTO_VERSION); |
| 954 | m_greatest_common_version = greatest_common_version; |
| 955 | } |
| 956 | int GetCommonVersion() const |
| 957 | { |
| 958 | return m_greatest_common_version; |
no outgoing calls