pub enum ParseError {
    HeaderLength(usize),
    HeaderFlag(&'static stru16),
    InvalidJump,
    ExcesiveJumps(u8),
    LabelLength(usize),
    LabelPrefix(u8),
    NameLength(usize),
    OobRead(usize),
    NonUtf8(Utf8Error),
}
Expand description

An error was encountered when trying to parse a byte buffer into a DNS packet

Variants

HeaderLength(usize)

The length of the header is too small.

HeaderFlag(&'static stru16)

Some header flag used a value that has not been implemented.

InvalidJump

There was a jump to a position forward in the packet (it does not follow the specification) or to itself (it is not sound as it would result in a DoS).

ExcesiveJumps(u8)

Some domain name has been compressed with too many jumps. This error may be removed in the future.

LabelLength(usize)

Some label in the DNS packet it too long, overflowing the packet or not following the DNS specification.

LabelPrefix(u8)

The DNS packet contains a label prefix that is not a length prefix or a pointer. Those values dont have a standard definition so are not implemented.

NameLength(usize)

One of the labels in the packet has a length that is bigger than the DNS specification.

OobRead(usize)

The packet tried to cause an out-of-bound read.

NonUtf8(Utf8Error)

Some label in one of the domain names is not valid UTF-8.

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

🔬 This is a nightly-only experimental API. (error_generic_member_access)

Provides type based access to context intended for error reports. Read more

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.