Type Alias ngx_log_t
Source pub type ngx_log_t = ngx_log_s;
struct ngx_log_t {
pub log_level: usize,
pub file: *mut ngx_open_file_s,
pub connection: u64,
pub disk_full_time: i64,
pub handler: Option<unsafe extern "C" fn(_: *mut ngx_log_s, _: *mut u8, _: usize) -> *mut u8>,
pub data: *mut c_void,
pub writer: Option<unsafe extern "C" fn(_: *mut ngx_log_s, _: usize, _: *mut u8, _: usize)>,
pub wdata: *mut c_void,
pub action: *mut i8,
pub next: *mut ngx_log_s,
}
§handler: Option<unsafe extern "C" fn(_: *mut ngx_log_s, _: *mut u8, _: usize) -> *mut u8>