netwatch 0.16.0

Cross-platform monitoring for network interface changes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Networking related utilities

#[cfg_attr(wasm_browser, path = "interfaces/wasm_browser.rs")]
pub mod interfaces;
pub mod ip;
mod ip_family;
pub mod netmon;
#[cfg(not(wasm_browser))]
mod udp;

pub use self::ip_family::IpFamily;
#[cfg(not(wasm_browser))]
pub use self::udp::{UdpSender, UdpSocket};