blob: 40ecd6bb754fae5eb0a55d650ec64f37dc93c3d7 [file] [log] [blame]
Andrew Walbran12f61402020-10-14 11:10:53 +01001use nix::net::if_::*;
2
3#[cfg(any(target_os = "android", target_os = "linux"))]
4const LOOPBACK: &[u8] = b"lo";
5
6#[cfg(not(any(target_os = "android", target_os = "linux")))]
7const LOOPBACK: &[u8] = b"lo0";
8
9#[test]
10fn test_if_nametoindex() {
Joel Galensone7950d92021-06-21 14:41:02 -070011 assert!(if_nametoindex(LOOPBACK).is_ok());
Andrew Walbran12f61402020-10-14 11:10:53 +010012}