Merge branch 'main' into remove-unnecessary-unsafe-block

This commit is contained in:
Robin Müller 2024-05-18 12:46:44 +02:00
commit 37e945fd91
2 changed files with 7 additions and 2 deletions

View File

@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
# [unreleased]
## Changed
- The HAL TCP server `ServerConfig::new` method now sets the `reuse_port` and `reuse_addr`
fields to `true`.
# [v0.2.0] 2024-05-02
## Changed

View File

@ -66,8 +66,8 @@ impl ServerConfig {
inner_loop_delay,
tm_buffer_size,
tc_buffer_size,
reuse_addr: false,
reuse_port: false,
reuse_addr: true,
reuse_port: true,
}
}
}