(&mut self, id: TcpConnectionId, bytes: &[u8])
| 118 | } |
| 119 | |
| 120 | pub fn tcp_send_frame(&mut self, id: TcpConnectionId, bytes: &[u8]) -> NetResult<()> { |
| 121 | self.tcp_connection_mut(id)?.write_frame(bytes) |
| 122 | } |
| 123 | |
| 124 | pub fn tcp_send_handshake( |
| 125 | &mut self, |
nothing calls this directly
no test coverage detected