Schedule bytes to be sent to the transport. */
| 1150 | |
| 1151 | /** Schedule bytes to be sent to the transport. */ |
| 1152 | void Send(std::span<const uint8_t> data) |
| 1153 | { |
| 1154 | m_to_send.insert(m_to_send.end(), data.begin(), data.end()); |
| 1155 | } |
| 1156 | |
| 1157 | /** Send V1 version message header to the transport. */ |
| 1158 | void SendV1Version(const MessageStartChars& magic) |
nothing calls this directly
no test coverage detected