renet/src/phy/sys/linux.rs

12 lines
385 B
Rust
Raw Normal View History

2021-03-25 01:04:42 +08:00
#![allow(unused)]
2021-06-27 15:31:59 +08:00
pub const SIOCGIFMTU: libc::c_ulong = 0x8921;
2016-12-11 07:15:26 +08:00
pub const SIOCGIFINDEX: libc::c_ulong = 0x8933;
2021-06-27 15:31:59 +08:00
pub const ETH_P_ALL: libc::c_short = 0x0003;
2021-04-29 18:04:46 +08:00
pub const ETH_P_IEEE802154: libc::c_short = 0x00F6;
2016-12-11 07:15:26 +08:00
2021-06-27 15:31:59 +08:00
pub const TUNSETIFF: libc::c_ulong = 0x400454CA;
pub const IFF_TUN: libc::c_int = 0x0001;
pub const IFF_TAP: libc::c_int = 0x0002;
pub const IFF_NO_PI: libc::c_int = 0x1000;