netdev 0.38.0

Cross-platform library for network interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(target_family = "unix")]
pub use crate::os::unix::flags::*;

#[cfg(any(target_os = "linux", target_os = "android"))]
pub use crate::os::linux::flags::*;

#[cfg(target_vendor = "apple")]
pub use crate::os::darwin::flags::*;

#[cfg(target_os = "windows")]
pub use crate::os::windows::flags::*;

#[cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))]
pub use crate::os::bsd::flags::*;