//!
/// Maximum size for a packet, coincidentally this is
/// the maximum size for a TCP packet.
pub const MAX_SIZE: usize = u16MAX as usize;
/// Minimum size for a packet, coincidentally this is
/// the largest block cipher's block-size.
pub const MIN_SIZE: usize = 16;
pub use ;