bandwhich 0.21.0

Display current network utilization by process, connection and remote IP/hostname
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(target_os = "linux")]
mod linux;

#[cfg(any(target_os = "macos", target_os = "freebsd"))]
mod lsof;

#[cfg(any(target_os = "macos", target_os = "freebsd"))]
mod lsof_utils;

#[cfg(target_os = "windows")]
mod windows;

mod errors;
pub(crate) mod shared;

pub use shared::*;