bandwhich 0.21.0

Display current network utilization by process, connection and remote IP/hostname
1
2
3
4
5
6
7
8
9
use std::{collections::HashMap, net::IpAddr};

mod client;
mod resolver;

pub use client::*;
pub use resolver::*;

pub type IpTable = HashMap<IpAddr, String>;