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
11
12
//! Task lifecycle management for the scanner.
//!
//! This module provides functions for spawning background tasks
//! for packet listening, stats aggregation, and packet transmission.

pub mod listener_task;
pub mod stats_task;
pub mod tx_task;

pub use listener_task::start_listening;
pub use stats_task::spawn_stats_aggregator;
pub use tx_task::start_tx_worker;