Type Alias TlsStream

Source
pub type TlsStream<S> = StreamOwned<ClientConnection, S>;
Expand description

A TLS stream

Aliased Type§

pub struct TlsStream<S> {
    pub conn: ClientConnection,
    pub sock: S,
}

Fields§

§conn: ClientConnection

Our connection

§sock: S

The underlying transport, like a socket