| 11 | const CLIENT_UNRESPONSIVE: Token = Token(1); |
| 12 | |
| 13 | struct Server { |
| 14 | out: Sender, |
| 15 | ping_timeout: Option<Timeout>, |
| 16 | client_unresponsive_timeout: Option<Timeout>, |
| 17 | } |
| 18 | impl Handler for Server { |
| 19 | fn on_open(&mut self, _: Handshake) -> Result<()> { |
| 20 | println!("Opened a connetion"); |
nothing calls this directly
no outgoing calls
no test coverage detected