senpa 0.1.0

A library to parse OPNsense firewall logs
Documentation
#![doc = include_str!("../README.md")]

pub mod ip;
pub mod log;
pub mod packet_filter;
pub mod protocol;
#[doc(hidden)]
mod utils;

//Re-exports
#[doc(inline)]
pub use self::log::parse_log;
#[doc(inline)]
pub use self::log::FwLog;
pub use self::packet_filter::Action;
pub use self::packet_filter::Dir;
pub use self::protocol::ProtoInfo;
pub use self::protocol::ProtoName;

pub mod prelude {
    pub use crate::packet_filter::Action::*;
    pub use crate::packet_filter::Dir::*;
    pub use crate::parse_log;
    pub use crate::ProtoInfo::*;
    pub use crate::ProtoName::*;
}