Home
last modified time | relevance | path

Searched refs:unpack_uint32 (Results 1 – 3 of 3) sorted by relevance

/webrtc/mdns/src/message/resource/
H A Dsoa.rs63 let (serial, off) = unpack_uint32(msg, off)?; in unpack()
66 let (refresh, off) = unpack_uint32(msg, off)?; in unpack()
69 let (retry, off) = unpack_uint32(msg, off)?; in unpack()
72 let (expire, off) = unpack_uint32(msg, off)?; in unpack()
75 let (min_ttl, off) = unpack_uint32(msg, off)?; in unpack()
H A Dmod.rs165 let (ttl, new_off) = unpack_uint32(msg, new_off)?; in unpack()
/webrtc/mdns/src/message/
H A Dpacker.rs49 pub(crate) fn unpack_uint32(msg: &[u8], off: usize) -> Result<(u32, usize)> { in unpack_uint32() function