packet_parser 1.5.0

A powerful and modular Rust crate for network packet parsing.
Documentation
// Copyright (c) 2024 Cyprien Avico avicocyprien@yahoo.com
//
// Licensed under the MIT License <LICENSE-MIT or http://opensource.org/licenses/MIT>.
// This file may not be copied, modified, or distributed except according to those terms.

// errors/mod.rs

pub(crate) mod application;
pub(crate) mod data_link;
pub(crate) mod internet;
pub(crate) mod transport;

use application::ApplicationError;
use data_link::DataLinkError;
use internet::InternetError;
use thiserror::Error;
use transport::TransportError;

#[derive(Error, Debug)]
pub enum ParsedPacketError {
    #[error("Packet too short: {0} bytes")]
    PacketTooShort(u8),

    #[error("Invalid DataLink segment: {0}")]
    InvalidDataLink(#[from] DataLinkError),

    #[error("Invalid Internet segment: {0}")]
    InvalidInternet(#[from] InternetError),

    #[error("Transport layer error: {0}")]
    Transport(#[from] TransportError),

    #[error("Application layer error: {0}")]
    Application(#[from] ApplicationError),
}