MutableIpv4Packet

Struct MutableIpv4Packet 

Source
pub struct MutableIpv4Packet<'a> { /* private fields */ }
Expand description

Represents a mutable IPv4 packet.

Implementations§

Source§

impl<'a> MutableIpv4Packet<'a>

Source

pub fn new_unchecked(buffer: &'a mut [u8]) -> Self

Create a mutable packet without validating the header fields.

Source

pub fn checksum_mode(&self) -> ChecksumMode

Returns the current checksum recalculation mode.

Source

pub fn set_checksum_mode(&mut self, mode: ChecksumMode)

Updates the checksum recalculation mode.

Source

pub fn enable_auto_checksum(&mut self)

Enables automatic checksum recalculation.

Source

pub fn disable_auto_checksum(&mut self)

Disables automatic checksum recalculation.

Source

pub fn is_checksum_dirty(&self) -> bool

Returns true when the checksum must be recomputed before serialization.

Source

pub fn mark_checksum_dirty(&mut self)

Marks the checksum as stale and triggers recomputation when automatic mode is enabled.

Source

pub fn recompute_checksum(&mut self) -> Option<u16>

Recomputes the IPv4 header checksum using the current buffer contents.

Source

pub fn header_len(&self) -> usize

Returns the header length in bytes.

Source

pub fn payload_len(&self) -> usize

Returns the payload length based on the total length field.

Source

pub fn total_len(&self) -> usize

Returns the effective total length of the packet.

Source

pub fn get_version(&self) -> u8

Retrieve the version field.

Source

pub fn set_version(&mut self, version: u8)

Update the version field.

Source

pub fn get_header_length(&self) -> u8

Retrieve the header length in 32-bit words.

Source

pub fn set_header_length(&mut self, ihl: u8)

Update the header length in 32-bit words.

Source

pub fn get_dscp(&self) -> u8

Retrieve the DSCP field.

Source

pub fn set_dscp(&mut self, dscp: u8)

Update the DSCP field.

Source

pub fn get_ecn(&self) -> u8

Retrieve the ECN field.

Source

pub fn set_ecn(&mut self, ecn: u8)

Update the ECN field.

Source

pub fn get_total_length(&self) -> u16

Retrieve the total length field.

Source

pub fn set_total_length(&mut self, len: u16)

Update the total length field.

Source

pub fn get_identification(&self) -> u16

Retrieve the identification field.

Source

pub fn set_identification(&mut self, id: u16)

Update the identification field.

Source

pub fn get_flags(&self) -> u8

Retrieve the flags field.

Source

pub fn set_flags(&mut self, flags: u8)

Update the flags field.

Source

pub fn get_fragment_offset(&self) -> u16

Retrieve the fragment offset field.

Source

pub fn set_fragment_offset(&mut self, offset: u16)

Update the fragment offset field.

Source

pub fn get_ttl(&self) -> u8

Retrieve the TTL field.

Source

pub fn set_ttl(&mut self, ttl: u8)

Update the TTL field.

Source

pub fn get_next_level_protocol(&self) -> IpNextProtocol

Retrieve the next-level protocol field.

Source

pub fn set_next_level_protocol(&mut self, proto: IpNextProtocol)

Update the next-level protocol field.

Source

pub fn get_checksum(&self) -> u16

Retrieve the checksum field.

Source

pub fn set_checksum(&mut self, checksum: u16)

Update the checksum field.

Source

pub fn get_source(&self) -> Ipv4Addr

Retrieve the source address.

Source

pub fn set_source(&mut self, addr: Ipv4Addr)

Update the source address.

Source

pub fn get_destination(&self) -> Ipv4Addr

Retrieve the destination address.

Source

pub fn set_destination(&mut self, addr: Ipv4Addr)

Update the destination address.

Trait Implementations§

Source§

impl<'a> MutablePacket<'a> for MutableIpv4Packet<'a>

Source§

type Packet = Ipv4Packet

The immutable packet type associated with this mutable view.
Source§

fn new(buffer: &'a mut [u8]) -> Option<Self>

Construct a mutable packet from the provided buffer.
Source§

fn packet(&self) -> &[u8]

Get a shared view over the entire packet buffer.
Source§

fn packet_mut(&mut self) -> &mut [u8]

Get a mutable view over the entire packet buffer.
Source§

fn header(&self) -> &[u8]

Get the serialized header bytes of the packet.
Source§

fn header_mut(&mut self) -> &mut [u8]

Get a mutable view over the serialized header bytes of the packet.
Source§

fn payload(&self) -> &[u8]

Get the payload bytes of the packet.
Source§

fn payload_mut(&mut self) -> &mut [u8]

Get a mutable view over the payload bytes of the packet.
Source§

fn freeze(&self) -> Option<Self::Packet>

Convert the mutable packet into its immutable counterpart.

Auto Trait Implementations§

§

impl<'a> Freeze for MutableIpv4Packet<'a>

§

impl<'a> RefUnwindSafe for MutableIpv4Packet<'a>

§

impl<'a> Send for MutableIpv4Packet<'a>

§

impl<'a> Sync for MutableIpv4Packet<'a>

§

impl<'a> Unpin for MutableIpv4Packet<'a>

§

impl<'a> !UnwindSafe for MutableIpv4Packet<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V