veilid/veilid-core
Salvatore Testa 6c6f0c4966
Default config listen_address to empty string
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 {
    // ...
}
```
2024-02-16 15:52:02 -08:00
..
proto switch to build hash from modtime for capnp generation 2024-01-20 21:52:23 -05:00
src Default config listen_address to empty string 2024-02-16 15:52:02 -08:00
tests fix #337 2023-11-04 19:53:14 -04:00
.gitignore minor cleanup and pipeline test 2021-12-08 08:29:49 -05:00
build.rs clippy lint 2024-01-21 15:50:48 -05:00
Cargo.toml chore: rebrand trust-dns-resolver to hickory-resolver 2024-02-12 17:04:27 -05:00
LICENSE.md licensing 2023-07-19 12:48:44 -04:00
run_tests.sh 32 bit fix 2023-09-20 11:31:01 -04:00
run_windows_tests.bat fix async std test and make windows test script work 2023-09-06 09:53:28 -04:00
webdriver.json more test work 2022-11-30 21:32:41 -05:00