Get an available port.
cargo add random-port
use random_port::PortPicker;
let port: u16 = PortPicker::new().pick().unwrap();
Returns a Result<u16, Error>
for a available port.
Specifies the range of ports to check. Must be in the range 1024..=65535
. E.g. port_range(1024..=65535)
.
Specifies the ports to exclude.
Specifies the protocol to check, Default is Protocol::All
. Can be either Protocol::Tcp
, Protocol::Udp
or Protocol::All
.
Specifies the host to check. Can be either an Ipv4 or Ipv6 address.
If not specified, will checks availability on all local addresses defined in the system.
Specifies whether to pick a random port from the range.
If not specified, will pick the first available port from the range.