(&self)
| 420 | } |
| 421 | |
| 422 | pub fn src_cid(&self) -> u64 { |
| 423 | LittleEndian::read_u64(&self.hdr()[HDROFF_SRC_CID..]) |
| 424 | } |
| 425 | |
| 426 | pub fn set_src_cid(&mut self, cid: u64) -> &mut Self { |
| 427 | LittleEndian::write_u64(&mut self.hdr_mut()[HDROFF_SRC_CID..], cid); |