Home
last modified time | relevance | path

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

/webrtc/mdns/src/message/resource/
H A Dsoa.rs52 msg = pack_uint32(msg, self.serial); in pack()
53 msg = pack_uint32(msg, self.refresh); in pack()
54 msg = pack_uint32(msg, self.retry); in pack()
55 msg = pack_uint32(msg, self.expire); in pack()
56 Ok(pack_uint32(msg, self.min_ttl)) in pack()
H A Dmod.rs154 msg = pack_uint32(msg, self.ttl); in pack()
/webrtc/mdns/src/message/
H A Dpacker.rs44 pub(crate) fn pack_uint32(mut msg: Vec<u8>, field: u32) -> Vec<u8> { in pack_uint32() function