Skip to content

Commit

Permalink
Update InterfaceFlags
Browse files Browse the repository at this point in the history
Add Flags: `IFF_NO_PI`, `IFF_TUN`, `IFF_TAP`.
  • Loading branch information
寧靜 committed Feb 1, 2018
1 parent ebf7505 commit 624468c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/net/if_.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,15 @@ libc_bitflags!(
/// Don't exchange routing info.
#[cfg(any(target_os = "solaris"))]
IFF_NORTEXCH;
/// Do not provide packet information
#[cfg(any(target_os = "linux"))]
IFF_NO_PI as i32;
/// TUN device (no Ethernet headers)
#[cfg(any(target_os = "linux"))]
IFF_TUN as i32;
/// TAP device
#[cfg(any(target_os = "linux"))]
IFF_TAP as i32;
/// IPv4 interface.
#[cfg(any(target_os = "solaris"))]
IFF_IPV4;
Expand Down

0 comments on commit 624468c

Please sign in to comment.