dns_message_parser/rr/edns/
mod.rs1pub(crate) mod rfc_6891;
2mod rfc_7830;
3mod rfc_7871;
4mod rfc_7873;
5mod rfc_8914;
6
7pub use rfc_6891::{EDNSOption, EDNSOptionCode, EDNS_DNSSEC_MASK};
9pub use rfc_7830::Padding;
10pub use rfc_7871::ECS;
11pub use rfc_7873::{
12 Cookie, CookieError, CLIENT_COOKIE_LENGTH, MAXIMUM_SERVER_COOKIE_LENGTH,
13 MINIMUM_SERVER_COOKIE_LENGTH,
14};
15pub use rfc_8914::{
16 ExtendedDNSErrorCodes, ExtendedDNSErrorExtraText, ExtendedDNSErrorExtraTextError,
17 ExtendedDNSErrors,
18};