pcap-parser 0.17.0

Parser for the PCAP/PCAPNG format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug)]
pub struct PcapNGHeader {
    pub magic_number: u32,
    pub version_major: u16,
    pub version_minor: u16,
    pub thiszone: i32,
    pub sigfigs: u32,
    /// max len of captured packets, in octets
    pub snaplen: u32,
    /// Data link type
    pub network: u32,
}