├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-BSD ├── LICENSE-MIT ├── README.md ├── appveyor.yml ├── codeowners ├── examples └── list_interfaces.rs ├── get_if_addrs-sys ├── Cargo.toml ├── LICENSE-BSD ├── LICENSE-MIT ├── README.md ├── build.rs ├── lib.rs └── native │ ├── ifaddrs.c │ └── ifaddrs.h ├── rustfmt.toml └── src ├── ifaddrs_posix.rs ├── ifaddrs_windows.rs ├── lib.rs └── sockaddr.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/LICENSE-BSD -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codeowners: -------------------------------------------------------------------------------- 1 | * @ustulation 2 | -------------------------------------------------------------------------------- /examples/list_interfaces.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/examples/list_interfaces.rs -------------------------------------------------------------------------------- /get_if_addrs-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/get_if_addrs-sys/Cargo.toml -------------------------------------------------------------------------------- /get_if_addrs-sys/LICENSE-BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/get_if_addrs-sys/LICENSE-BSD -------------------------------------------------------------------------------- /get_if_addrs-sys/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/get_if_addrs-sys/LICENSE-MIT -------------------------------------------------------------------------------- /get_if_addrs-sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/get_if_addrs-sys/README.md -------------------------------------------------------------------------------- /get_if_addrs-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/get_if_addrs-sys/build.rs -------------------------------------------------------------------------------- /get_if_addrs-sys/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/get_if_addrs-sys/lib.rs -------------------------------------------------------------------------------- /get_if_addrs-sys/native/ifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/get_if_addrs-sys/native/ifaddrs.c -------------------------------------------------------------------------------- /get_if_addrs-sys/native/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/get_if_addrs-sys/native/ifaddrs.h -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | use_try_shorthand = true 2 | -------------------------------------------------------------------------------- /src/ifaddrs_posix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/src/ifaddrs_posix.rs -------------------------------------------------------------------------------- /src/ifaddrs_windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/src/ifaddrs_windows.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/sockaddr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maidsafe-archive/get_if_addrs/HEAD/src/sockaddr.rs --------------------------------------------------------------------------------