Get underlying socket stream reference (only for socket mode)
(&self)
| 2415 | |
| 2416 | // Get underlying socket stream reference (only for socket mode) |
| 2417 | fn get_ref(&self) -> Option<&SocketStream> { |
| 2418 | match self { |
| 2419 | SslConnection::Socket(stream) => Some(stream.get_ref()), |
| 2420 | SslConnection::Bio(_) => None, |
| 2421 | } |
| 2422 | } |
| 2423 | |
| 2424 | // Check if this is in BIO mode |
| 2425 | fn is_bio(&self) -> bool { |
no test coverage detected