Skip to content
This repository has been archived by the owner on Oct 8, 2023. It is now read-only.

Latest commit

 

History

History
57 lines (35 loc) · 1.03 KB

README.rst

File metadata and controls

57 lines (35 loc) · 1.03 KB

Rust bindings to retrieve network interface information

Date: 10/10 2017
RustVersion:nightly
  • Windows
  • Unix-Like( BSD-Like, XNU, Linux )
git clone https://github.com/LuoZijun/rust-ifaces.git
cargo run --example ifaces
[dependencies]
ifaces = { git = "https://github.com/LuoZijun/rust-ifaces.git" }
extern crate ifaces;

fn main() {
    match ifaces::ifaces() {
        Ok(interfaces) => {
            for interface in interfaces.into_iter() {
                println!("Found Interface: {:?}", interface)
            }
        },
        Err(_) => println!("Ooops ...")
    };
}
  • dlevy47 , Origin code(linux platform)
  • GGist , windows platform code