third_party_rust_nix/test/test_net.rs
Bryant Mairs ae8e4a4ba0 Remove elided 'static lifetime
As of Rust 1.17 'static lifetimes are implied when
declaring consts.
2017-12-20 07:05:04 -08:00

13 lines
294 B
Rust

use nix::net::if_::*;
#[cfg(any(target_os = "android", target_os = "linux"))]
const LOOPBACK: &[u8] = b"lo";
#[cfg(not(any(target_os = "android", target_os = "linux")))]
const LOOPBACK: &[u8] = b"lo0";
#[test]
fn test_if_nametoindex() {
assert!(if_nametoindex(&LOOPBACK[..]).is_ok());
}