smaller fixes

This commit is contained in:
2024-04-10 15:05:24 +02:00
parent 47eba99da1
commit 443995fe5e
4 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
use std::{
collections::{HashSet, VecDeque},
collections::VecDeque,
sync::{atomic::AtomicBool, Arc, Mutex},
time::Duration,
};
@ -86,7 +86,7 @@ impl HandledConnectionHandler for ConnectionFinishedHandler {
pub type TcpServerType<TcSource, MpscErrorType> = TcpSpacepacketsServer<
SyncTcpTmSource,
CcsdsDistributor<CcsdsReceiver<TcSource, MpscErrorType>, MpscErrorType>,
HashSet<PacketId>,
Vec<PacketId>,
ConnectionFinishedHandler,
(),
CcsdsError<MpscErrorType>,