Type Alias ngx_ssl_connection_t
Source pub type ngx_ssl_connection_t = ngx_ssl_connection_s;
#[repr(C)]
pub struct ngx_ssl_connection_t {Show 15 fields
    pub connection: *mut ssl_st,
    pub session_ctx: *mut ssl_ctx_st,
    pub last: isize,
    pub buf: *mut ngx_buf_s,
    pub buffer_size: usize,
    pub handler: Option<unsafe extern "C" fn(*mut ngx_connection_s)>,
    pub session: *mut ssl_session_st,
    pub save_session: Option<unsafe extern "C" fn(*mut ngx_connection_s)>,
    pub saved_read_handler: Option<unsafe extern "C" fn(*mut ngx_event_s)>,
    pub saved_write_handler: Option<unsafe extern "C" fn(*mut ngx_event_s)>,
    pub ocsp: *mut ngx_ssl_ocsp_s,
    pub early_buf: u8,
    pub _bitfield_align_1: [u8; 0],
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2]>,
    pub __bindgen_padding_0: [u8; 5],
 }
§handler: Option<unsafe extern "C" fn(*mut ngx_connection_s)>§saved_read_handler: Option<unsafe extern "C" fn(*mut ngx_event_s)>§saved_write_handler: Option<unsafe extern "C" fn(*mut ngx_event_s)>