Primary Maintainer: Andrew Cann (andrew.cann@maidsafe.net)
Secondary Maintainer: Qi Ma (qi.ma@maidsafe.net)
|Crate|Linux/OS X|Windows|Coverage|Issues|
|:---:|:--------:|:-----:|:------:|:----:|
||
|
|
|
|
| API Documentation - master branch | SAFE Network System Documentation | MaidSafe website | SAFE Network Forum | |:------:|:-------:|:-------:|:-------:|
Retrieve network interface info for all interfaces on the system.
rust
// List all of the machine's network interfaces
for iface in get_if_addrs::get_if_addrs().unwrap() {
println!("{:#?}", iface);
}