| 167 | } |
| 168 | |
| 169 | void TcpConnection::send_packet(td::BufferSlice data) { |
| 170 | send(create_serialize_tl_object<cocoon_api::tcp_packet>(std::move(data))); |
| 171 | } |
| 172 | |
| 173 | void TcpConnection::send_query(td::int64 query_id, td::BufferSlice data) { |
| 174 | send(create_serialize_tl_object<cocoon_api::tcp_query>(query_id, std::move(data))); |
nothing calls this directly
no outgoing calls
no test coverage detected