domain/resolv/lookup/mod.rs
1//! Lookup functions and related types.
2//!
3//! This module collects a number of more or less complex lookups that
4//! implement applications of the DNS.
5
6pub use self::addr::lookup_addr;
7pub use self::host::{lookup_host, search_host};
8pub use self::srv::lookup_srv;
9
10pub mod addr;
11pub mod host;
12pub mod srv;