dns-message-parser 0.9.0

Libary to encode and decode DNS packets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub(crate) mod rfc_6891;
mod rfc_7830;
mod rfc_7871;
mod rfc_7873;
mod rfc_8914;

//pub use rfc_6891::OPT;
pub use rfc_6891::{EDNSOption, EDNSOptionCode, EDNS_DNSSEC_MASK};
pub use rfc_7830::Padding;
pub use rfc_7871::ECS;
pub use rfc_7873::{
    Cookie, CookieError, CLIENT_COOKIE_LENGTH, MAXIMUM_SERVER_COOKIE_LENGTH,
    MINIMUM_SERVER_COOKIE_LENGTH,
};
pub use rfc_8914::{
    ExtendedDNSErrorCodes, ExtendedDNSErrorExtraText, ExtendedDNSErrorExtraTextError,
    ExtendedDNSErrors,
};