introduce stop signal handling
Some checks are pending
Rust/sat-rs/pipeline/head Build started...
Rust/sat-rs/pipeline/pr-main This commit looks good

This commit is contained in:
2024-04-09 17:21:43 +02:00
parent 0fec994028
commit 3cc9dd3c48
7 changed files with 75 additions and 5 deletions

View File

@ -104,7 +104,13 @@ impl<
packet_id_lookup: HashSet<PacketId>,
) -> Result<Self, std::io::Error> {
Ok(Self {
server: TcpSpacepacketsServer::new(cfg, tm_source, tc_receiver, packet_id_lookup)?,
server: TcpSpacepacketsServer::new(
cfg,
tm_source,
tc_receiver,
packet_id_lookup,
None,
)?,
})
}