(&self)
| 429 | } |
| 430 | |
| 431 | pub fn dst_cid(&self) -> u64 { |
| 432 | LittleEndian::read_u64(&self.hdr()[HDROFF_DST_CID..]) |
| 433 | } |
| 434 | |
| 435 | pub fn set_dst_cid(&mut self, cid: u64) -> &mut Self { |
| 436 | LittleEndian::write_u64(&mut self.hdr_mut()[HDROFF_DST_CID..], cid); |