pub type switch_config_t = switch_config;Expand description
\brief A simple file handle representing an open configuration file
Aliased Type§
#[repr(C)]pub struct switch_config_t {
pub file: *mut _IO_FILE,
pub path: [i8; 512],
pub category: [i8; 256],
pub section: [i8; 256],
pub buf: [i8; 1024],
pub lineno: i32,
pub catno: i32,
pub sectno: i32,
pub lockto: i32,
}Fields§
§file: *mut _IO_FILEFILE stream buffer to the opened file
path: [i8; 512]path to the file
category: [i8; 256]current category
section: [i8; 256]current section
buf: [i8; 1024]buffer of current line being read
lineno: i32current line number in file
catno: i32current category number in file
sectno: i32current section number in file
lockto: i32