xarxa

Crates

git

Versions

default

Flavors

Skip to main content

DnsPacket

Struct DnsPacket 

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

A read/write wrapper around a DNS packet buffer.

Implementations§

Source§

impl<'a> Packet<'a>

Source

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

Imbue a raw octet buffer with DNS 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 smaller than the header length.

Source

pub fn into_inner(self) -> &'a mut [u8]

Consume the packet, returning the underlying buffer.

Source

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

The bytes after the header: questions and records.

Source

pub fn transaction_id(&self) -> u16

Return the transaction ID field.

Source

pub fn flags(&self) -> Flags

Return the flags field.

Source

pub fn opcode(&self) -> Opcode

Return the opcode field.

Source

pub fn rcode(&self) -> Rcode

Return the response code field.

Source

pub fn question_count(&self) -> u16

Return the question count field.

Source

pub fn answer_record_count(&self) -> u16

Return the answer record count field.

Source

pub fn authority_record_count(&self) -> u16

Return the authority record count field.

Source

pub fn additional_record_count(&self) -> u16

Return the additional record count field.

Source

pub fn parse_name<'b>( &'b self, bytes: &'b [u8], ) -> impl Iterator<Item = Result<&'b [u8]>>

Parse a name from bytes, following compression pointers into this packet.

Yields one label at a time. Pointers are only allowed to point backwards, so pointer loops end the iteration with an error.

Source

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

The bytes after the header, mutable.

Source

pub fn set_transaction_id(&mut self, val: u16)

Set the transaction ID field.

Source

pub fn set_flags(&mut self, val: Flags)

Set the flags field. Leaves the opcode and rcode bits alone.

Source

pub fn set_opcode(&mut self, val: Opcode)

Set the opcode field.

Source

pub fn set_question_count(&mut self, val: u16)

Set the question count field.

Source

pub fn set_answer_record_count(&mut self, val: u16)

Set the answer record count field.

Source

pub fn set_authority_record_count(&mut self, val: u16)

Set the authority record count field.

Source

pub fn set_additional_record_count(&mut self, val: u16)

Set the additional record count field.

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.