aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/worker.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/worker.rs b/src/worker.rs
index 90c9e93..92c69ab 100644
--- a/src/worker.rs
+++ b/src/worker.rs
@@ -257,8 +257,6 @@ impl<S: UdpSender, R: UdpReceiver> Worker<S, R> {
let seqnum = cursor.read_u16::<BigEndian>()?;
self.chans[ch].packets[to_seqnum(seqnum)].replace(cursor.remaining_slice().into());
- println!("{seqnum}");
-
let mut ack_data = Vec::with_capacity(3);
ack_data.write_u8(CtlType::Ack as u8)?;
ack_data.write_u16::<BigEndian>(seqnum)?;