Skip to content

Commit 9621d41

Browse files
committed
fix: try find path and error returns
1 parent d09ed1c commit 9621d41

3 files changed

Lines changed: 175 additions & 64 deletions

File tree

Cargo.lock

Lines changed: 103 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/packet_processor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ pub trait Processor {
4242
router.handle_flood_request(flood_request, pkt.session_id)?;
4343
}
4444
PacketType::FloodResponse(flood_response) => {
45-
router.handle_flood_response(&flood_response);
45+
let _ = router.handle_flood_response(&flood_response);
4646
}
4747
}
4848
Ok(())

0 commit comments

Comments
 (0)