pcapsql_core/pcap/
mod.rs

1//! PCAP file reading module.
2//!
3//! This module handles reading PCAP and PCAPNG files and
4//! exposing raw packets for parsing.
5//!
6//! The main types are:
7//! - [`PcapReader`] - File-based reader with automatic compression handling
8//! - [`crate::io::RawPacket`] - Raw packet data (re-exported from io module)
9
10mod reader;
11
12pub use reader::PcapReader;
13// RawPacket is exported from crate::io, not duplicated here