MutableTcpPacket

Struct MutableTcpPacket 

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

Represents a mutable TCP packet.

Implementations§

Source§

impl<'a> MutableTcpPacket<'a>

Source

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

Create a packet without validating the header fields.

Source

pub fn checksum_mode(&self) -> ChecksumMode

Returns the checksum recalculation mode for the packet.

Source

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

Updates how checksum recalculation should be handled.

Source

pub fn enable_auto_checksum(&mut self)

Enables automatic checksum recomputation after field mutations.

Source

pub fn disable_auto_checksum(&mut self)

Disables automatic checksum recomputation.

Source

pub fn is_checksum_dirty(&self) -> bool

Returns true if the checksum needs to be updated before serialization.

Source

pub fn mark_checksum_dirty(&mut self)

Marks the checksum as dirty and recomputes it when automatic mode is enabled.

Source

pub fn set_checksum_context(&mut self, context: TransportChecksumContext)

Configures the pseudo-header context required for checksum calculation.

Source

pub fn set_ipv4_checksum_context( &mut self, source: Ipv4Addr, destination: Ipv4Addr, )

Sets an IPv4 pseudo-header context for checksum calculation.

Source

pub fn set_ipv6_checksum_context( &mut self, source: Ipv6Addr, destination: Ipv6Addr, )

Sets an IPv6 pseudo-header context for checksum calculation.

Source

pub fn clear_checksum_context(&mut self)

Clears the configured pseudo-header context.

Source

pub fn checksum_context(&self) -> Option<TransportChecksumContext>

Returns the currently configured pseudo-header context.

Source

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

Recomputes the checksum using the configured pseudo-header context.

Source

pub fn header_len(&self) -> usize

Returns the header length in bytes.

Source

pub fn payload_len(&self) -> usize

Returns the payload length of the packet.

Source

pub fn get_source(&self) -> u16

Source

pub fn set_source(&mut self, value: u16)

Source

pub fn get_destination(&self) -> u16

Source

pub fn set_destination(&mut self, value: u16)

Source

pub fn get_sequence(&self) -> u32

Source

pub fn set_sequence(&mut self, value: u32)

Source

pub fn get_acknowledgement(&self) -> u32

Source

pub fn set_acknowledgement(&mut self, value: u32)

Source

pub fn get_data_offset(&self) -> u8

Source

pub fn set_data_offset(&mut self, offset: u8)

Source

pub fn get_reserved(&self) -> u8

Source

pub fn set_reserved(&mut self, value: u8)

Source

pub fn get_flags(&self) -> u8

Source

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

Source

pub fn get_window(&self) -> u16

Source

pub fn set_window(&mut self, value: u16)

Source

pub fn get_checksum(&self) -> u16

Source

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

Source

pub fn get_urgent_ptr(&self) -> u16

Source

pub fn set_urgent_ptr(&mut self, value: u16)

Source

pub fn options(&self) -> &[u8]

Source

pub fn options_mut(&mut self) -> &mut [u8]

Trait Implementations§

Source§

impl<'a> MutablePacket<'a> for MutableTcpPacket<'a>

Source§

type Packet = TcpPacket

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 MutableTcpPacket<'a>

§

impl<'a> RefUnwindSafe for MutableTcpPacket<'a>

§

impl<'a> Send for MutableTcpPacket<'a>

§

impl<'a> Sync for MutableTcpPacket<'a>

§

impl<'a> Unpin for MutableTcpPacket<'a>

§

impl<'a> !UnwindSafe for MutableTcpPacket<'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