Skip to content
Snippets Groups Projects
Commit 6c0f1d75 authored by Stephen D's avatar Stephen D
Browse files

don't log packets we didn't decode

parent ec45fba0
No related branches found
No related tags found
No related merge requests found
......@@ -119,63 +119,61 @@ pub async fn packet_handler(
.context("Packet receive channel died")?;
let mut buf = [0; MAX_PACKET_LEN];
match attempt_decode(&packet, &mut buf) {
Ok(mut packet) => {
let mut buf2 = [0; MAX_PACKET_LEN];
let mut internet_packet = packet.clone_backing(&mut buf2);
match append_internet_to_packet_route(&callsign, ssid, &mut internet_packet) {
Some(()) => match internet_packet.semi_encode() {
Ok(encoded) => {
let semi = SemiPacketIn {
raw: encoded.to_vec(),
uuid: uuid.into(),
};
if let Ok(mut packet) = attempt_decode(&packet, &mut buf) {
let mut buf2 = [0; MAX_PACKET_LEN];
let mut internet_packet = packet.clone_backing(&mut buf2);
match append_internet_to_packet_route(&callsign, ssid, &mut internet_packet) {
Some(()) => match internet_packet.semi_encode() {
Ok(encoded) => {
let semi = SemiPacketIn {
raw: encoded.to_vec(),
uuid: uuid.into(),
};
let _ = tx.send(semi);
}
let _ = tx.send(semi);
}
Err(e) => {
eprintln!("Could not semi-encode packet: {e:?}");
}
},
None => {
eprintln!("Could not add routing to packet before gating to the Internet. Skipping");
Err(e) => {
eprintln!("Could not semi-encode packet: {e:?}");
}
},
None => {
eprintln!(
"Could not add routing to packet before gating to the Internet. Skipping"
);
}
}
match packet.should_digipeat(&callsign, ssid) {
Ok(()) => {
if let Err(e) = packet.append_to_route(&callsign, ssid) {
eprintln!(
"Could not add routing to packet before digipeating: {e}. Skipping"
);
continue;
};
let mut encoded_buf = [0; MAX_PACKET_LEN];
let mut encoded = Buffer::new_empty(&mut encoded_buf);
match packet.fully_encode(&mut encoded) {
Ok(()) => {
packet_send
.send(encoded.to_vec())
.await
.with_context(|| "Packet send channel died")?;
}
match packet.should_digipeat(&callsign, ssid) {
Ok(()) => {
if let Err(e) = packet.append_to_route(&callsign, ssid) {
eprintln!(
"Could not add routing to packet before digipeating: {e}. Skipping"
);
continue;
};
Err(e) => {
eprintln!("Could not fully-encode packet: {e:?}");
}
let mut encoded_buf = [0; MAX_PACKET_LEN];
let mut encoded = Buffer::new_empty(&mut encoded_buf);
match packet.fully_encode(&mut encoded) {
Ok(()) => {
packet_send
.send(encoded.to_vec())
.await
.with_context(|| "Packet send channel died")?;
}
}
Err(e) => {
eprintln!("Not digipeating: {e}");
Err(e) => {
eprintln!("Could not fully-encode packet: {e:?}");
}
}
};
}
}
Err(e) => eprintln!("Recv error: {e}"),
};
Err(e) => {
eprintln!("Not digipeating: {e}");
}
};
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment