(&self, id: UdpEndpointId)
| 525 | |
| 526 | fn tcp_connection(&self, id: TcpConnectionId) -> NetResult<&TcpConnection> { |
| 527 | get_slot(&self.tcp_connections, id.0, "tcp connection") |
| 528 | } |
| 529 | |
| 530 | fn tcp_connection_mut(&mut self, id: TcpConnectionId) -> NetResult<&mut TcpConnection> { |
| 531 | get_slot_mut(&mut self.tcp_connections, id.0, "tcp connection") |
| 532 | } |
no test coverage detected