Trait IcmpPacketTypeRaw

Source
pub trait IcmpPacketTypeRaw<B: SplitByteSliceMut, I: Ip>: Sized + ParsablePacket<B, (), Error = ParseError> {
    // Required methods
    fn update_checksum_pseudo_header_address(
        &mut self,
        old: I::Addr,
        new: I::Addr,
    );
    fn update_checksum_header_field<F: IntoBytes + Immutable>(
        &mut self,
        old: F,
        new: F,
    );

    // Provided method
    fn update_checksum_header_field_u16(&mut self, old: u16, new: u16) { ... }
}
Expand description

An ICMP or ICMPv6 packet

‘IcmpPacketType’ is implemented by Icmpv4Packet and Icmpv6Packet

Required Methods§

Source

fn update_checksum_pseudo_header_address(&mut self, old: I::Addr, new: I::Addr)

Update the checksum to reflect an updated address in the pseudo header.

Source

fn update_checksum_header_field<F: IntoBytes + Immutable>( &mut self, old: F, new: F, )

Update the checksum to reflect a field change in the header.

It is the caller’s responsibility to ensure the field is actually part of an ICMP header for checksumming.

Provided Methods§

Source

fn update_checksum_header_field_u16(&mut self, old: u16, new: u16)

Like IcmpPacketTypeRaw::update_checksum_header_field, but takes native endian u16s.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<B: SplitByteSliceMut> IcmpPacketTypeRaw<B, Ipv4> for Icmpv4PacketRaw<B>

Source§

impl<B: SplitByteSliceMut> IcmpPacketTypeRaw<B, Ipv6> for Icmpv6PacketRaw<B>

Source§

impl<I: IcmpIpExt, B: SplitByteSliceMut, M: IcmpMessage<I>> IcmpPacketTypeRaw<B, I> for IcmpPacketRaw<I, B, M>