pub trait MidHandshakeSslStreamExt {
    // Required method
    fn client_hello_received(&self) -> bool;
}
Expand description

An extension trait adding OSX specific functionality to the MidHandshakeSslStream type.

Required Methods§

source

fn client_hello_received(&self) -> bool

Returns true iff break_on_client_hello was set and the handshake has progressed to that point.

Requires the OSX_10_11 (or greater) feature.

Implementors§