Skip to main content

o_sfu_rfc/
port.rs

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