xarxa

Crates

git

Versions

default

Flavors

Skip to main content

IgmpPacket

Struct IgmpPacket 

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

A read/write wrapper around an Internet Group Management Protocol v1/v2 packet buffer.

Implementations§

Source§

impl<'a> Packet<'a>

Internet Group Management Protocol v1/v2 defined in RFC 2236.

Source

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

Imbue a raw octet buffer with IGMPv2 packet structure.

Source

pub fn new_checked(buffer: &'a mut [u8]) -> Result<Packet<'a>>

Shorthand for a combination of new_unchecked and check_len.

Source

pub fn check_len(&self) -> Result<()>

Ensure that no accessor method will panic if called. Returns Err(Error) if the buffer is too short.

Source

pub fn msg_type(&self) -> Message

Return the message type field.

Source

pub fn max_resp_code(&self) -> u8

Return the maximum response time, using the encoding specified in RFC 3376: 4.1.1. Max Resp Code.

Source

pub fn max_resp_time(&self) -> Duration

Return the maximum response time, decoded from the max resp code field.

Source

pub fn checksum(&self) -> u16

Return the checksum field.

Source

pub fn group_addr(&self) -> Ipv4Address

Return the group address field.

Source

pub fn verify_checksum(&self) -> bool

Validate the header checksum.

§Fuzzing

This function always returns true when fuzzing.

Source

pub fn set_msg_type(&mut self, value: Message)

Set the message type field.

Source

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

Set the maximum response time, using the encoding specified in RFC 3376: 4.1.1. Max Resp Code.

Source

pub fn set_max_resp_time(&mut self, value: Duration)

Set the maximum response time, encoding it into the max resp code field.

Source

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

Set the checksum field.

Source

pub fn set_group_address(&mut self, addr: Ipv4Address)

Set the group address field

Source

pub fn fill_checksum(&mut self)

Compute and fill in the header checksum.

Trait Implementations§

Source§

impl<'a> Debug for Packet<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> Eq for Packet<'a>

Source§

impl<'a> PartialEq for Packet<'a>

Source§

fn eq(&self, other: &Packet<'a>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<'a> StructuralPartialEq for Packet<'a>

Auto Trait Implementations§

§

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

§

impl<'a> Freeze for Packet<'a>

§

impl<'a> RefUnwindSafe for Packet<'a>

§

impl<'a> Send for Packet<'a>

§

impl<'a> Sync for Packet<'a>

§

impl<'a> Unpin for Packet<'a>

§

impl<'a> UnsafeUnpin for Packet<'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 = !

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.