1//! Transport protocol port ranges from RFC 6335.
23/// First port in the dynamic port range from RFC 6335 section 6.
4pub const DYNAMIC_RANGE_START: u16 = 49_152;
56/// Last port in the dynamic port range from RFC 6335 section 6.
7pub const DYNAMIC_RANGE_END: u16 = u16::MAX;