1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Lookup functions and related types.
//!
//! This module collects a number of more or less complex lookups that
//! implement applications of the DNS.

pub use self::addr::lookup_addr;
pub use self::host::lookup_host;
pub use self::records::lookup_records;
pub use self::srv::lookup_srv;

pub mod addr;
pub mod host;
pub mod records;
pub mod search;
pub mod srv;