Struct sozu_lib::messages::TlsProxyConfiguration [] [src]

pub struct TlsProxyConfiguration {
    pub front: SocketAddr,
    pub front_timeout: u64,
    pub back_timeout: u64,
    pub max_connections: usize,
    pub buffer_size: usize,
    pub public_address: Option<IpAddr>,
    pub answer_404: String,
    pub answer_503: String,
    pub options: u64,
    pub cipher_list: String,
    pub default_name: Option<String>,
    pub default_app_id: Option<String>,
    pub default_certificate: Option<Vec<u8>>,
    pub default_key: Option<Vec<u8>>,
    pub default_certificate_chain: Option<String>,
}

Fields

Trait Implementations

impl Debug for TlsProxyConfiguration
[src]

Formats the value using the given formatter.

impl Clone for TlsProxyConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TlsProxyConfiguration
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for TlsProxyConfiguration
[src]

impl Hash for TlsProxyConfiguration
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Default for TlsProxyConfiguration
[src]

Returns the "default value" for a type. Read more