pub struct MidHandshakeTlsStream<S>(_);
Expand description
A TLS stream which has been interrupted midway through the handshake process.
Implementations§
source§impl<S> MidHandshakeTlsStream<S>
impl<S> MidHandshakeTlsStream<S>
source§impl<S> MidHandshakeTlsStream<S>where
S: Read + Write,
impl<S> MidHandshakeTlsStream<S>where
S: Read + Write,
sourcepub fn handshake(self) -> Result<TlsStream<S>, HandshakeError<S>>
pub fn handshake(self) -> Result<TlsStream<S>, HandshakeError<S>>
Restarts the handshake process.
If the handshake completes successfully then the negotiated stream is
returned. If there is a problem, however, then an error is returned.
Note that the error may not be fatal. For example if the underlying
stream is an asynchronous one then HandshakeError::WouldBlock
may
just mean to wait for more I/O to happen later.