pub struct MutableIpv4Packet<'p> { /* private fields */ }
Expand description
A structure enabling manipulation of on the wire packets
Implementations§
Source§impl<'a> MutableIpv4Packet<'a>
impl<'a> MutableIpv4Packet<'a>
Sourcepub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableIpv4Packet<'p>>
pub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableIpv4Packet<'p>>
Constructs a new #name. If the provided buffer is less than the minimum required packet size, this will return None.
Sourcepub fn owned(packet: Vec<u8>) -> Option<MutableIpv4Packet<'static>>
pub fn owned(packet: Vec<u8>) -> Option<MutableIpv4Packet<'static>>
Constructs a new #name. If the provided buffer is less than the minimum required packet size, this will return None. With this constructor the #name will own its own data and the underlying buffer will be dropped when the #name is.
Sourcepub fn to_immutable<'p>(&'p self) -> Ipv4Packet<'p>
pub fn to_immutable<'p>(&'p self) -> Ipv4Packet<'p>
Maps from a #name to a #imm_name
Sourcepub fn consume_to_immutable(self) -> Ipv4Packet<'a>
pub fn consume_to_immutable(self) -> Ipv4Packet<'a>
Maps from a #name to a #imm_name while consuming the source
Sourcepub const fn minimum_packet_size() -> usize
pub const fn minimum_packet_size() -> usize
The minimum size (in bytes) a packet of this type can be. It’s based on the total size of the fixed-size fields.
Sourcepub fn packet_size(_packet: &Ipv4) -> usize
pub fn packet_size(_packet: &Ipv4) -> usize
The size (in bytes) of a #base_name instance when converted into a byte-array
Sourcepub fn get_version(&self) -> u4
pub fn get_version(&self) -> u4
Get the version field. This field is always stored big-endian within the struct, but this accessor returns host order.
Sourcepub fn get_header_length(&self) -> u4
pub fn get_header_length(&self) -> u4
Get the header_length field. This field is always stored big-endian within the struct, but this accessor returns host order.
Sourcepub fn get_dscp(&self) -> u6
pub fn get_dscp(&self) -> u6
Get the dscp field. This field is always stored big-endian within the struct, but this accessor returns host order.
Sourcepub fn get_ecn(&self) -> u2
pub fn get_ecn(&self) -> u2
Get the ecn field. This field is always stored big-endian within the struct, but this accessor returns host order.
Sourcepub fn get_total_length(&self) -> u16be
pub fn get_total_length(&self) -> u16be
Get the total_length field. This field is always stored big-endian within the struct, but this accessor returns host order.
Sourcepub fn get_identification(&self) -> u16be
pub fn get_identification(&self) -> u16be
Get the identification field. This field is always stored big-endian within the struct, but this accessor returns host order.
Sourcepub fn get_flags(&self) -> u3
pub fn get_flags(&self) -> u3
Get the flags field. This field is always stored big-endian within the struct, but this accessor returns host order.
Sourcepub fn get_fragment_offset(&self) -> u13be
pub fn get_fragment_offset(&self) -> u13be
Get the fragment_offset field. This field is always stored big-endian within the struct, but this accessor returns host order.
Sourcepub fn get_ttl(&self) -> u8
pub fn get_ttl(&self) -> u8
Get the ttl field. This field is always stored big-endian within the struct, but this accessor returns host order.
Sourcepub fn get_next_level_protocol(&self) -> IpNextHeaderProtocol
pub fn get_next_level_protocol(&self) -> IpNextHeaderProtocol
Get the value of the {name} field
Sourcepub fn get_checksum(&self) -> u16be
pub fn get_checksum(&self) -> u16be
Get the checksum field. This field is always stored big-endian within the struct, but this accessor returns host order.
Sourcepub fn get_source(&self) -> Ipv4Addr
pub fn get_source(&self) -> Ipv4Addr
Get the value of the {name} field
Sourcepub fn get_destination(&self) -> Ipv4Addr
pub fn get_destination(&self) -> Ipv4Addr
Get the value of the {name} field
Sourcepub fn get_options_raw(&self) -> &[u8] ⓘ
pub fn get_options_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the {name} field, without copying
Sourcepub fn get_options(&self) -> Vec<Ipv4Option>
pub fn get_options(&self) -> Vec<Ipv4Option>
Get the value of the {name} field (copies contents)
Sourcepub fn get_options_iter(&self) -> Ipv4OptionIterable<'_> ⓘ
pub fn get_options_iter(&self) -> Ipv4OptionIterable<'_> ⓘ
Get the value of the {name} field as iterator
Sourcepub fn get_payload(&self) -> Vec<u8> ⓘ
pub fn get_payload(&self) -> Vec<u8> ⓘ
Get the value of the {name} field (copies contents)
Sourcepub fn set_version(&mut self, val: u4)
pub fn set_version(&mut self, val: u4)
Set the version field. This field is always stored big-endian within the struct, but this mutator wants host order.
Sourcepub fn set_header_length(&mut self, val: u4)
pub fn set_header_length(&mut self, val: u4)
Set the header_length field. This field is always stored big-endian within the struct, but this mutator wants host order.
Sourcepub fn set_dscp(&mut self, val: u6)
pub fn set_dscp(&mut self, val: u6)
Set the dscp field. This field is always stored big-endian within the struct, but this mutator wants host order.
Sourcepub fn set_ecn(&mut self, val: u2)
pub fn set_ecn(&mut self, val: u2)
Set the ecn field. This field is always stored big-endian within the struct, but this mutator wants host order.
Sourcepub fn set_total_length(&mut self, val: u16be)
pub fn set_total_length(&mut self, val: u16be)
Set the total_length field. This field is always stored big-endian within the struct, but this mutator wants host order.
Sourcepub fn set_identification(&mut self, val: u16be)
pub fn set_identification(&mut self, val: u16be)
Set the identification field. This field is always stored big-endian within the struct, but this mutator wants host order.
Sourcepub fn set_flags(&mut self, val: u3)
pub fn set_flags(&mut self, val: u3)
Set the flags field. This field is always stored big-endian within the struct, but this mutator wants host order.
Sourcepub fn set_fragment_offset(&mut self, val: u13be)
pub fn set_fragment_offset(&mut self, val: u13be)
Set the fragment_offset field. This field is always stored big-endian within the struct, but this mutator wants host order.
Sourcepub fn set_ttl(&mut self, val: u8)
pub fn set_ttl(&mut self, val: u8)
Set the ttl field. This field is always stored big-endian within the struct, but this mutator wants host order.
Sourcepub fn set_next_level_protocol(&mut self, val: IpNextHeaderProtocol)
pub fn set_next_level_protocol(&mut self, val: IpNextHeaderProtocol)
Set the value of the {name} field.
Sourcepub fn set_checksum(&mut self, val: u16be)
pub fn set_checksum(&mut self, val: u16be)
Set the checksum field. This field is always stored big-endian within the struct, but this mutator wants host order.
Sourcepub fn set_source(&mut self, val: Ipv4Addr)
pub fn set_source(&mut self, val: Ipv4Addr)
Set the value of the {name} field.
Sourcepub fn set_destination(&mut self, val: Ipv4Addr)
pub fn set_destination(&mut self, val: Ipv4Addr)
Set the value of the {name} field.
Sourcepub fn get_options_raw_mut(&mut self) -> &mut [u8] ⓘ
pub fn get_options_raw_mut(&mut self) -> &mut [u8] ⓘ
Get the raw &mut u8 value of the {name} field, without copying
Sourcepub fn set_options(&mut self, vals: &[Ipv4Option])
pub fn set_options(&mut self, vals: &[Ipv4Option])
Set the value of the {name} field (copies contents)
Sourcepub fn set_payload(&mut self, vals: &[u8])
pub fn set_payload(&mut self, vals: &[u8])
Set the value of the {name} field (copies contents)