netui 0.2.1

NetUI is a Rust-based tui designed to monitor network interfaces. It allows you to send ARP messages via the network interface and listen for packets to show bandwidth stats.
Documentation
1
2
3
4
5
6
7
8
9
10
//! TCP connection state tracking.
//!
//! This module provides TCP state machine logic for tracking connection
//! states (SYN_SENT, ESTABLISHED, FIN_WAIT, etc.) based on TCP flags.

mod state;
mod tracker;

pub use state::TcpState;
pub use tracker::TcpStateTracker;