allow using SO_REUSEADDR and SO_REUSEPORT on TCP server #722

Merged
gaisser merged 4 commits from eive/fsfw:tcp_server_reuseaddr_reusesocket into development 2023-02-06 14:45:41 +01:00
1 changed files with 4 additions and 0 deletions
Showing only changes of commit b646717a76 - Show all commits

View File

@ -28,6 +28,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## Added
- `TcpTmTcServer`: Allow setting the `SO_REUSEADDR` and `SO_REUSEPORT`
option on the TCP server. CTOR prototype has changed and expects an explicit
TCP configuration struct to be passed.
PR: https://egit.irs.uni-stuttgart.de/fsfw/fsfw/pulls/722
- `DleParser` helper class to parse DLE encoded packets from a byte stream.
PR: https://egit.irs.uni-stuttgart.de/fsfw/fsfw/pulls/711
- `UioMapper` is able to resolve symlinks now.