| 635 | bool ReceiveMsgBytes(Span<const uint8_t> msg_bytes, bool& complete); |
| 636 | |
| 637 | void SetCommonVersion(int greatest_common_version) |
| 638 | { |
| 639 | Assume(m_greatest_common_version == INIT_PROTO_VERSION); |
| 640 | m_greatest_common_version = greatest_common_version; |
| 641 | } |
| 642 | int GetCommonVersion() const |
| 643 | { |
| 644 | return m_greatest_common_version; |
no outgoing calls