Home
last modified time | relevance | path

Searched refs:scanf (Results 1 – 5 of 5) sorted by relevance

/xiu/protocol/rtsp/src/
H A Drtsp_utils.rs1 macro_rules! scanf { macro
8 pub(crate) use scanf;
33 scanf!(str_a, |c| c == ':' || c == '.', i64, i64, i64, i64) in test_scanf()
H A Drtsp_transport.rs4 use super::rtsp_utils::scanf;
54 let ports = scanf!(kv[1], '-', u16, u16); in unmarshal()
67 let ports = scanf!(kv[1], '-', u16, u16); in unmarshal()
80 let vals = scanf!(kv[1], '-', u8, u8); in unmarshal()
H A Drtsp_range.rs57 rtsp_utils::scanf!(range_time, |c| c == ':' || c == '.', i64, i64, i64, i64) in unmarshal()
/xiu/protocol/webrtc/src/http/
H A Dmod.rs4 macro_rules! scanf { macro
76 let (k, v) = scanf!(ele, '=', String, String); in unmarshal()
97 let (address_val, port_val) = scanf!(value, ':', String, u16); in unmarshal()
/xiu/protocol/rtsp/src/http/
H A Dmod.rs47 rtsp_utils::scanf!(address_with_port, ':', String, u16); in unmarshal()