summaryrefslogtreecommitdiff
path: root/test/test_net.rs
blob: 78a09b6c63fc511f18dc8c26099804295d838ce3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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", target_os = "haiku")))]
const LOOPBACK: &[u8] = b"lo0";

#[cfg(target_os = "haiku")]
const LOOPBACK: &[u8] = b"loop";

#[test]
fn test_if_nametoindex() {
    assert!(if_nametoindex(LOOPBACK).is_ok());
}