pcap-parser icon indicating copy to clipboard operation
pcap-parser copied to clipboard

PCAP/PCAPNG file format parser written in pure Rust. Fast, zero-copy, safe.

Results 13 pcap-parser issues
Sort by recently updated
recently updated
newest added

`parse_pcap` currently handles only LE headers. Update it to handle all supported types like `LegacyPcapReader` does.

Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. Release notes Sourced from actions/checkout's releases. v6.0.0 What's Changed Update README to include Node.js 24 support details and requirements by @​salmanmkc in actions/checkout#2248 Persist...

dependencies
github_actions

When using pcap-parser with zstd streaming decoder `create_reader(1024 * 1024, )` https://github.com/rusticata/pcap-parser/blob/c35ce738442cb10fd7e22ea4ee54a3102c2e4143/src/capture.rs#L40-L45 the zstd decoder `read` operation can pull `1024 * 1024` bytes to the buffer which makes the buffer...