Skip to content

Commit

Permalink
Remove debug print line form legacy someip
Browse files Browse the repository at this point in the history
  • Loading branch information
AmmarAbouZor authored and marcmo committed Oct 7, 2024
1 parent 49df8f1 commit 34ae886
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions application/apps/indexer/sources/src/binary/pcap/legacy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,11 @@ impl<R: Read + Send + Sync> ByteSource for PcapLegacyByteSource<R> {
);
consumed = bytes_read;
match block {
PcapBlockOwned::LegacyHeader(ref hdr) => {
println!("LegacyHeader {:?}", hdr);
PcapBlockOwned::LegacyHeader(ref _hdr) => {
self.pcap_reader.consume(consumed);
continue;
}
PcapBlockOwned::Legacy(ref b) => {
println!("Legacy: {:?}", b);
raw_data = &b.data[..b.origlen as usize];
break;
}
Expand Down

0 comments on commit 34ae886

Please sign in to comment.