[][src]Struct nginx::ngx_http_ssl_srv_conf_t

#[repr(C)]pub struct ngx_http_ssl_srv_conf_t {
    pub enable: ngx_flag_t,
    pub ssl: ngx_ssl_t,
    pub prefer_server_ciphers: ngx_flag_t,
    pub early_data: ngx_flag_t,
    pub protocols: ngx_uint_t,
    pub verify: ngx_uint_t,
    pub verify_depth: ngx_uint_t,
    pub buffer_size: size_t,
    pub builtin_session_cache: ssize_t,
    pub session_timeout: time_t,
    pub certificates: *mut ngx_array_t,
    pub certificate_keys: *mut ngx_array_t,
    pub certificate_values: *mut ngx_array_t,
    pub certificate_key_values: *mut ngx_array_t,
    pub dhparam: ngx_str_t,
    pub ecdh_curve: ngx_str_t,
    pub client_certificate: ngx_str_t,
    pub trusted_certificate: ngx_str_t,
    pub crl: ngx_str_t,
    pub ciphers: ngx_str_t,
    pub passwords: *mut ngx_array_t,
    pub shm_zone: *mut ngx_shm_zone_t,
    pub session_tickets: ngx_flag_t,
    pub session_ticket_keys: *mut ngx_array_t,
    pub ocsp: ngx_uint_t,
    pub ocsp_responder: ngx_str_t,
    pub ocsp_cache_zone: *mut ngx_shm_zone_t,
    pub stapling: ngx_flag_t,
    pub stapling_verify: ngx_flag_t,
    pub stapling_file: ngx_str_t,
    pub stapling_responder: ngx_str_t,
    pub file: *mut u_char,
    pub line: ngx_uint_t,
}

Fields

enable: ngx_flag_tssl: ngx_ssl_tprefer_server_ciphers: ngx_flag_tearly_data: ngx_flag_tprotocols: ngx_uint_tverify: ngx_uint_tverify_depth: ngx_uint_tbuffer_size: size_tbuiltin_session_cache: ssize_tsession_timeout: time_tcertificates: *mut ngx_array_tcertificate_keys: *mut ngx_array_tcertificate_values: *mut ngx_array_tcertificate_key_values: *mut ngx_array_tdhparam: ngx_str_tecdh_curve: ngx_str_tclient_certificate: ngx_str_ttrusted_certificate: ngx_str_tcrl: ngx_str_tciphers: ngx_str_tpasswords: *mut ngx_array_tshm_zone: *mut ngx_shm_zone_tsession_tickets: ngx_flag_tsession_ticket_keys: *mut ngx_array_tocsp: ngx_uint_tocsp_responder: ngx_str_tocsp_cache_zone: *mut ngx_shm_zone_tstapling: ngx_flag_tstapling_verify: ngx_flag_tstapling_file: ngx_str_tstapling_responder: ngx_str_tfile: *mut u_charline: ngx_uint_t

Trait Implementations

impl Clone for ngx_http_ssl_srv_conf_t[src]

impl Copy for ngx_http_ssl_srv_conf_t[src]

impl Debug for ngx_http_ssl_srv_conf_t[src]

Auto Trait Implementations

impl RefUnwindSafe for ngx_http_ssl_srv_conf_t

impl !Send for ngx_http_ssl_srv_conf_t

impl !Sync for ngx_http_ssl_srv_conf_t

impl Unpin for ngx_http_ssl_srv_conf_t

impl UnwindSafe for ngx_http_ssl_srv_conf_t

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.