Struct pnet::packet::icmp::echo_request::MutableEchoRequestPacket
source · pub struct MutableEchoRequestPacket<'p> { /* private fields */ }
Expand description
A structure enabling manipulation of on the wire packets
Implementations§
source§impl<'a> MutableEchoRequestPacket<'a>
impl<'a> MutableEchoRequestPacket<'a>
sourcepub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableEchoRequestPacket<'p>>
pub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableEchoRequestPacket<'p>>
Constructs a new MutableEchoRequestPacket. If the provided buffer is less than the minimum required packet size, this will return None.
sourcepub fn owned(packet: Vec<u8>) -> Option<MutableEchoRequestPacket<'static>>
pub fn owned(packet: Vec<u8>) -> Option<MutableEchoRequestPacket<'static>>
Constructs a new MutableEchoRequestPacket. If the provided buffer is less than the minimum required packet size, this will return None. With this constructor the MutableEchoRequestPacket will own its own data and the underlying buffer will be dropped when the MutableEchoRequestPacket is.
sourcepub fn to_immutable<'p>(&'p self) -> EchoRequestPacket<'p>
pub fn to_immutable<'p>(&'p self) -> EchoRequestPacket<'p>
Maps from a MutableEchoRequestPacket to a EchoRequestPacket
sourcepub fn consume_to_immutable(self) -> EchoRequestPacket<'a>
pub fn consume_to_immutable(self) -> EchoRequestPacket<'a>
Maps from a MutableEchoRequestPacket to a EchoRequestPacket 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: &EchoRequest) -> usize
pub fn packet_size(_packet: &EchoRequest) -> usize
The size (in bytes) of a EchoRequest instance when converted into a byte-array
sourcepub fn populate(&mut self, packet: &EchoRequest)
pub fn populate(&mut self, packet: &EchoRequest)
Populates a EchoRequestPacket using a EchoRequest structure
sourcepub fn get_icmp_type(&self) -> IcmpType
pub fn get_icmp_type(&self) -> IcmpType
Get the value of the icmp_type field
sourcepub fn get_icmp_code(&self) -> IcmpCode
pub fn get_icmp_code(&self) -> IcmpCode
Get the value of the icmp_code field
sourcepub fn get_checksum(&self) -> u16
pub fn get_checksum(&self) -> u16
Get the checksum field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_identifier(&self) -> u16
pub fn get_identifier(&self) -> u16
Get the identifier field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_sequence_number(&self) -> u16
pub fn get_sequence_number(&self) -> u16
Get the sequence_number field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn set_icmp_type(&mut self, val: IcmpType)
pub fn set_icmp_type(&mut self, val: IcmpType)
Set the value of the icmp_type field.
sourcepub fn set_icmp_code(&mut self, val: IcmpCode)
pub fn set_icmp_code(&mut self, val: IcmpCode)
Set the value of the icmp_code field.
sourcepub fn set_checksum(&mut self, val: u16)
pub fn set_checksum(&mut self, val: u16)
Set the checksum field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_identifier(&mut self, val: u16)
pub fn set_identifier(&mut self, val: u16)
Set the identifier field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_sequence_number(&mut self, val: u16)
pub fn set_sequence_number(&mut self, val: u16)
Set the sequence_number field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_payload(&mut self, vals: &[u8])
pub fn set_payload(&mut self, vals: &[u8])
Set the value of the payload field (copies contents)
Trait Implementations§
source§impl<'p> Debug for MutableEchoRequestPacket<'p>
impl<'p> Debug for MutableEchoRequestPacket<'p>
source§impl<'p> FromPacket for MutableEchoRequestPacket<'p>
impl<'p> FromPacket for MutableEchoRequestPacket<'p>
§type T = EchoRequest
type T = EchoRequest
source§fn from_packet(&self) -> EchoRequest
fn from_packet(&self) -> EchoRequest
source§impl<'a> MutablePacket for MutableEchoRequestPacket<'a>
impl<'a> MutablePacket for MutableEchoRequestPacket<'a>
source§fn packet_mut<'p>(&'p mut self) -> &'p mut [u8] ⓘ
fn packet_mut<'p>(&'p mut self) -> &'p mut [u8] ⓘ
source§fn payload_mut<'p>(&'p mut self) -> &'p mut [u8] ⓘ
fn payload_mut<'p>(&'p mut self) -> &'p mut [u8] ⓘ
source§fn clone_from<T>(&mut self, other: &T)where
T: Packet,
fn clone_from<T>(&mut self, other: &T)where
T: Packet,
source§impl<'a> Packet for MutableEchoRequestPacket<'a>
impl<'a> Packet for MutableEchoRequestPacket<'a>
source§impl<'a> PacketSize for MutableEchoRequestPacket<'a>
impl<'a> PacketSize for MutableEchoRequestPacket<'a>
source§fn packet_size(&self) -> usize
fn packet_size(&self) -> usize
source§impl<'p> PartialEq for MutableEchoRequestPacket<'p>
impl<'p> PartialEq for MutableEchoRequestPacket<'p>
source§fn eq(&self, other: &MutableEchoRequestPacket<'p>) -> bool
fn eq(&self, other: &MutableEchoRequestPacket<'p>) -> bool
self
and other
values to be equal, and is used
by ==
.