mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
6c6f0c4966
If the address is `""` then an available address is automatically picked. ``` // Network#allocate_tcp_port if listen_address.is_empty() { // If listen address is empty, find us a port iteratively let port = self.find_available_tcp_port(5150)?; let ip_addrs = available_unspecified_addresses(); Ok((port, ip_addrs)) } else { // ... } ``` |
||
---|---|---|
.. | ||
proto | ||
src | ||
tests | ||
.gitignore | ||
build.rs | ||
Cargo.toml | ||
LICENSE.md | ||
run_tests.sh | ||
run_windows_tests.bat | ||
webdriver.json |