Check if this is in BIO mode
(&self)
| 2423 | |
| 2424 | // Check if this is in BIO mode |
| 2425 | fn is_bio(&self) -> bool { |
| 2426 | matches!(self, SslConnection::Bio(_)) |
| 2427 | } |
| 2428 | |
| 2429 | // Perform SSL handshake |
| 2430 | fn do_handshake(&mut self) -> Result<(), ssl::Error> { |
no outgoing calls
no test coverage detected