1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![allow(clippy::unreadable_literal)]

//! This crate contains parsers and readers for Pcap and Pcapng files.
//! It also contains a writer for Pcap files.
//!
//! For Pcap files see
//! [PcapReader](struct.PcapReader.html), [PcapParser](struct.PcapParser.html) and [PcapWriter](struct.PcapParser.html)
//!
//! For PcapNg files see
//! [PcapNgReader](struct.PcapNgReader.html) and [PcapParser](struct.PcapParser.html)

pub(crate) mod common;
pub use common::*;

pub(crate) mod errors;
pub use errors::*;

pub mod pcap;
pub use pcap::{PcapReader, PcapParser, PcapWriter};

pub mod pcapng;
pub use pcapng::{PcapNgReader, PcapNgParser};

pub(crate) mod peek_reader;