We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d033dab commit 8a8b7dcCopy full SHA for 8a8b7dc
src/unix/notbsd/linux/mod.rs
@@ -1797,6 +1797,17 @@ pub const RT_CLASS_MAIN: u8 = 254;
1797
pub const RT_CLASS_LOCAL: u8 = 255;
1798
pub const RT_CLASS_MAX: u8 = 255;
1799
1800
+// linux/neighbor.h
1801
+pub const NUD_NONE: u16 = 0x00;
1802
+pub const NUD_INCOMPLETE: u16 = 0x01;
1803
+pub const NUD_REACHABLE: u16 = 0x02;
1804
+pub const NUD_STALE: u16 = 0x04;
1805
+pub const NUD_DELAY: u16 = 0x08;
1806
+pub const NUD_PROBE: u16 = 0x10;
1807
+pub const NUD_FAILED: u16 = 0x20;
1808
+pub const NUD_NOARP: u16 = 0x40;
1809
+pub const NUD_PERMANENT: u16 = 0x80;
1810
+
1811
// linux/rtnetlink.h
1812
pub const RTM_F_NOTIFY: ::c_uint = 0x100;
1813
pub const RTM_F_CLONED: ::c_uint = 0x200;
0 commit comments