This commit is contained in:
Simon Wicky
2026-05-19 11:31:13 +02:00
parent e952f9df24
commit 62a5d1437d
2 changed files with 1 additions and 5 deletions
@@ -28,9 +28,7 @@ pub struct FragmentHeader {
/// set was fully received as well as to perform bound checks.
total_fragments: u8,
/// Since message is always fragmented into payloads of constant lengths
/// (apart from possibly the last one), there's no need to use offsets like ipv4/ipv6
/// and we can just simply enumerate the fragments to later reconstruct the message.
/// Index of this fragment, in (0..total_fragments)
current_fragment: u8,
reserved: [u8; 4],
-2
View File
@@ -56,12 +56,10 @@ impl LpDataSetup {
output_tx,
shutdown.clone_shutdown_token(),
);
//let sender = LpDataSender::new(data_state, output_rx, shutdown.clone_shutdown_token());
Ok(LpDataSetup {
listener,
handler,
//sender,
shutdown,
})
}