Forgot to add Ok(())

This commit is contained in:
2026-03-07 12:36:42 -05:00
parent f9671f9408
commit 200eadf9a1

View File

@@ -38,6 +38,7 @@ fn pcap_loop<T: Read>(tx: Sender<KissPkt>, stream: T) -> Result<()> {
data: pkt.data.into(),
})?;
}
Ok(())
}
fn tnc_loop<T: Read>(tx: Sender<KissPkt>, mut stream: T) -> Result<()> {
let mut buffer = [0_u8; 4096];