Check if handshake is in progress
(&self)
| 269 | impl TlsConnection { |
| 270 | /// Check if handshake is in progress |
| 271 | pub fn is_handshaking(&self) -> bool { |
| 272 | match self { |
| 273 | TlsConnection::Client(conn) => conn.is_handshaking(), |
| 274 | TlsConnection::Server(conn) => conn.is_handshaking(), |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | /// Check if connection wants to read data |
| 279 | pub fn wants_read(&self) -> bool { |
no outgoing calls
no test coverage detected