1 2 3 4 5 6 7 8 9 10 11 12
//! GSM 07.10 CMUX (virtual serial channels over one physical port). mod frame; mod io; mod path; mod session; pub use frame::{encode_uih, DecodedFrame, Deframer}; pub use io::CmuxPhysicalIo; pub use io::SerialPortIo; pub use path::{mux_path, parse_mux_path}; pub use session::{CmuxSession, DlciChannel};