Type Alias switch_http_request_t
Source pub type switch_http_request_t = switch_http_request_s;
#[repr(C)]
pub struct switch_http_request_t {Show 19 fields
pub method: *const i8,
pub uri: *const i8,
pub qs: *const i8,
pub host: *const i8,
pub port: u16,
pub from: *const i8,
pub user_agent: *const i8,
pub referer: *const i8,
pub user: *const i8,
pub keepalive: u32,
pub content_type: *const i8,
pub content_length: usize,
pub bytes_header: usize,
pub bytes_read: usize,
pub bytes_buffered: usize,
pub headers: *mut switch_event,
pub user_data: *mut c_void,
pub _buffer: *mut i8,
pub _destroy_headers: u32,
}