Struct openssl::ssl::SslAcceptorBuilder [] [src]

pub struct SslAcceptorBuilder(_);

A builder for SslAcceptors.

Methods

impl SslAcceptorBuilder
[src]

Creates a new builder configured to connect to non-legacy clients. This should generally be considered a reasonable default choice.

This corresponds to the intermediate configuration of Mozilla's server side TLS recommendations. See its documentation for more details on specifics.

Creates a new builder configured to connect to modern clients.

This corresponds to the modern configuration of Mozilla's server side TLS recommendations. See its documentation for more details on specifics.

Returns a shared reference to the inner SslContextBuilder.

Returns a mutable reference to the inner SslContextBuilder.

Consumes the builder, returning a SslAcceptor.