packet_parser 1.3.0

A powerful and modular Rust crate for network packet parsing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod arp;
pub mod ipv4;
pub mod ipv6;
pub mod profinet;

#[derive(Debug)]
pub enum InternetProtocolType {
    Arp,
    Ipv4,
    Ipv6,
    Profinet,
    Unknown(u8),
}