inherface 0.3.1

Retrieve a system's Network Interfaces on Linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! A network interface can represent physical network devices such as
//! ethernet or wireless. It can also be a virtual representation.
//!
//! The operating system maintains records of available network interfaces
//! and the data associated with them. This project gets the data and structures
//! it as standard rust data types.

mod error;
mod getifaddrs;
mod interface;
mod interfaces;

pub use error::*;
pub use interface::*;
pub use interfaces::get_interfaces;