| 89 | } |
| 90 | |
| 91 | void ConnmanTestMsg::NodeReceiveMsgBytes(CNode& node, std::span<const uint8_t> msg_bytes, bool& complete) const |
| 92 | { |
| 93 | assert(node.ReceiveMsgBytes(msg_bytes, complete)); |
| 94 | if (complete) { |
| 95 | node.MarkReceivedMsgsForProcessing(); |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | void ConnmanTestMsg::FlushSendBuffer(CNode& node) const |
| 100 | { |
nothing calls this directly
no test coverage detected