Home
last modified time | relevance | path

Searched refs:MidHandshakeSslStream (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Derror.rs8 use crate::ssl::MidHandshakeSslStream;
142 Failure(MidHandshakeSslStream<S>),
146 WouldBlock(MidHandshakeSslStream<S>),
Dmod.rs3397 pub struct MidHandshakeSslStream<S> { struct
3402 impl<S> MidHandshakeSslStream<S> { implementation
3429 impl<S> MidHandshakeSslStream<S> implementation
3907 Err(HandshakeError::WouldBlock(MidHandshakeSslStream { in connect()
3912 _ => Err(HandshakeError::Failure(MidHandshakeSslStream { in connect()
3926 Err(HandshakeError::WouldBlock(MidHandshakeSslStream { in accept()
3931 _ => Err(HandshakeError::Failure(MidHandshakeSslStream { in accept()
3951 Err(HandshakeError::WouldBlock(MidHandshakeSslStream { in handshake()
3956 _ => Err(HandshakeError::Failure(MidHandshakeSslStream { in handshake()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
Dmod.rs31 Error, HandshakeError, MidHandshakeSslStream, ShutdownResult, ShutdownState, Ssl, SslAcceptor,