Struct pnet_packet::gre::GrePacket
source · pub struct GrePacket<'p> { /* private fields */ }
Expand description
A structure enabling manipulation of on the wire packets
Implementations§
source§impl<'a> GrePacket<'a>
impl<'a> GrePacket<'a>
sourcepub fn new<'p>(packet: &'p [u8]) -> Option<GrePacket<'p>>
pub fn new<'p>(packet: &'p [u8]) -> Option<GrePacket<'p>>
Constructs a new GrePacket. If the provided buffer is less than the minimum required packet size, this will return None.
sourcepub fn owned(packet: Vec<u8>) -> Option<GrePacket<'static>>
pub fn owned(packet: Vec<u8>) -> Option<GrePacket<'static>>
Constructs a new GrePacket. If the provided buffer is less than the minimum required packet size, this will return None. With this constructor the GrePacket will own its own data and the underlying buffer will be dropped when the GrePacket is.
sourcepub fn to_immutable<'p>(&'p self) -> GrePacket<'p>
pub fn to_immutable<'p>(&'p self) -> GrePacket<'p>
Maps from a GrePacket to a GrePacket
sourcepub fn consume_to_immutable(self) -> GrePacket<'a>
pub fn consume_to_immutable(self) -> GrePacket<'a>
Maps from a GrePacket to a GrePacket 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: &Gre) -> usize
pub fn packet_size(_packet: &Gre) -> usize
The size (in bytes) of a Gre instance when converted into a byte-array
sourcepub fn get_checksum_present(&self) -> u1
pub fn get_checksum_present(&self) -> u1
Get the checksum_present field.
sourcepub fn get_routing_present(&self) -> u1
pub fn get_routing_present(&self) -> u1
Get the routing_present field.
sourcepub fn get_key_present(&self) -> u1
pub fn get_key_present(&self) -> u1
Get the key_present field.
sourcepub fn get_sequence_present(&self) -> u1
pub fn get_sequence_present(&self) -> u1
Get the sequence_present field.
sourcepub fn get_strict_source_route(&self) -> u1
pub fn get_strict_source_route(&self) -> u1
Get the strict_source_route field.
sourcepub fn get_recursion_control(&self) -> u3
pub fn get_recursion_control(&self) -> u3
Get the recursion_control field.
sourcepub fn get_zero_flags(&self) -> u5
pub fn get_zero_flags(&self) -> u5
Get the zero_flags field.
sourcepub fn get_version(&self) -> u3
pub fn get_version(&self) -> u3
Get the version field.
sourcepub fn get_protocol_type(&self) -> u16be
pub fn get_protocol_type(&self) -> u16be
Get the protocol_type field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_checksum_raw(&self) -> &[u8] ⓘ
pub fn get_checksum_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the checksum field, without copying
sourcepub fn get_checksum(&self) -> Vec<U16BE>
pub fn get_checksum(&self) -> Vec<U16BE>
Get the value of the checksum field (copies contents)
sourcepub fn get_checksum_iter(&self) -> U16BEIterable<'_> ⓘ
pub fn get_checksum_iter(&self) -> U16BEIterable<'_> ⓘ
Get the value of the checksum field as iterator
sourcepub fn get_offset_raw(&self) -> &[u8] ⓘ
pub fn get_offset_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the offset field, without copying
sourcepub fn get_offset(&self) -> Vec<U16BE>
pub fn get_offset(&self) -> Vec<U16BE>
Get the value of the offset field (copies contents)
sourcepub fn get_offset_iter(&self) -> U16BEIterable<'_> ⓘ
pub fn get_offset_iter(&self) -> U16BEIterable<'_> ⓘ
Get the value of the offset field as iterator
sourcepub fn get_key_raw(&self) -> &[u8] ⓘ
pub fn get_key_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the key field, without copying
sourcepub fn get_key_iter(&self) -> U32BEIterable<'_> ⓘ
pub fn get_key_iter(&self) -> U32BEIterable<'_> ⓘ
Get the value of the key field as iterator
sourcepub fn get_sequence_raw(&self) -> &[u8] ⓘ
pub fn get_sequence_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the sequence field, without copying
sourcepub fn get_sequence(&self) -> Vec<U32BE>
pub fn get_sequence(&self) -> Vec<U32BE>
Get the value of the sequence field (copies contents)
sourcepub fn get_sequence_iter(&self) -> U32BEIterable<'_> ⓘ
pub fn get_sequence_iter(&self) -> U32BEIterable<'_> ⓘ
Get the value of the sequence field as iterator
sourcepub fn get_routing_raw(&self) -> &[u8] ⓘ
pub fn get_routing_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the routing field, without copying
sourcepub fn get_routing(&self) -> Vec<u8>
pub fn get_routing(&self) -> Vec<u8>
Get the value of the routing field (copies contents)