domain/net/
mod.rs

1//! Sending and receiving DNS messages.
2//!
3//! This module provides types, traits, and functions for sending and receiving
4//! DNS messages.
5//!
6//! Currently, the module only provides the unstable
7#![cfg_attr(feature = "unstable-client-transport", doc = " [`client`]")]
8#![cfg_attr(not(feature = "unstable-client-transport"), doc = " `client`")]
9//! sub-module intended for sending requests and receiving responses to them,
10//! the unstable
11#![cfg_attr(feature = "unstable-server-transport", doc = " [`server`]")]
12#![cfg_attr(not(feature = "unstable-server-transport"), doc = " `server`")]
13//! sub-module intended for receiving requests and sending responses to them.
14//! and the unstable
15#![cfg_attr(feature = "unstable-xfr", doc = " [`xfr`]")]
16#![cfg_attr(not(feature = "unstable-xfr"), doc = " `xfr`")]
17//! sub-module for zone transfer related functionality.
18//!
19#![cfg(feature = "net")]
20#![cfg_attr(docsrs, doc(cfg(feature = "net")))]
21
22pub mod client;
23pub mod server;
24pub mod xfr;