rust-dnsbox/lib/dnsbox-base/src/common_types/mod.rs

10 lines
268 B
Rust
Raw Normal View History

2017-12-16 20:58:18 +00:00
pub mod name;
pub mod text;
pub mod binary;
mod rr_type;
pub use self::name::{DnsName, DnsCompressedName};
pub use self::text::{ShortText};
pub use self::binary::{HexShortBlob, Base32ShortBlob, LongText, RemainingText, HexRemainingBlob};
pub use self::rr_type::Type;