dns-message-parser icon indicating copy to clipboard operation
dns-message-parser copied to clipboard

Rust libary to encode and decode DNS packets

Results 5 dns-message-parser issues
Sort by recently updated
recently updated
newest added

I noticed that the DNSSEC resource record types from [RFC 4034](https://datatracker.ietf.org/doc/html/rfc4034) (`DS`, `DNSKEY`, `RRSIG`, `NSEC`) aren't supported. I came across this when capturing DNS packets using [dnspeep](https://github.com/jvns/dnspeep/) -- some of...

I propose we instead store those unknown values in an `Unknown(u16)` variant or something like that to allow the user to handle the query however they see fit. One might...

These have value types explicitly defined in the RFC (https://tools.ietf.org/html/rfc8659#section-4.2). Perhaps instead of having `tag` and `value` fields for CAA RRs, we could just have `value` whose type is an...

I'm currently using this lib to discovery peers in the local network using mDNS, and the queries are basically DNS queries. But every now and then the following error shows...