ufwlog 0.3.0-beta.1

A library to parse, format and export ufw log.
Documentation
1
2
3
4
5
6
7
8
9
10
//! # ufwlog
//!
//! A library for parsing UFW (Uncomplicated Firewall) log files.

pub mod export;
pub mod parser;
mod ufw_log;

pub use ufw_log::LoggedEvent;
pub use ufw_log::UfwLog;