Conversation
Add PcapNG read/write with auto-detection so rdpcap(), PcapReader, and extract_flows() transparently handle both PCAP and PcapNG formats. wrpcap() auto-selects PcapNG when the path ends in .pcapng, and a new wrpcapng() function is available for explicit PcapNG writing. Add memory-budgeted streaming flow extraction: extract_flows() now streams packets from disk one at a time instead of loading all into memory. When a memory_budget is set in FlowConfig, TCP reassembly buffers automatically spill to memory-mapped temp files (via memmap2) when RAM usage exceeds the budget, and are read back on demand. Temp files are cleaned up via RAII (NamedTempFile). Also fixes pre-existing MqttSn builder test compilation errors (missing imports) and updates README with new features and protocol documentation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add PcapNG read/write with auto-detection so rdpcap(), PcapReader, and extract_flows() transparently handle both PCAP and PcapNG formats. wrpcap() auto-selects PcapNG when the path ends in .pcapng, and a new wrpcapng() function is available for explicit PcapNG writing.
Add memory-budgeted streaming flow extraction: extract_flows() now streams packets from disk one at a time instead of loading all into memory. When a memory_budget is set in FlowConfig, TCP reassembly buffers automatically spill to memory-mapped temp files (via memmap2) when RAM usage exceeds the budget, and are read back on demand. Temp files are cleaned up via RAII (NamedTempFile).
Also fixes pre-existing MqttSn builder test compilation errors (missing imports) and updates README with new features and protocol documentation.