Skip to content

Commit

Permalink
Auto merge of #3051 - tones111:rtnl_if_enum, r=JohnTitor
Browse files Browse the repository at this point in the history
linux: add rtnetlink ifinfomsg attribute enumerals
  • Loading branch information
bors committed Jan 18, 2023
2 parents 216a428 + 22e6b1c commit 44cfc0e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
10 changes: 10 additions & 0 deletions libc-test/semver/linux.txt
Expand Up @@ -788,6 +788,16 @@ GRND_NONBLOCK
GRND_RANDOM
GRND_INSECURE
IBSHIFT
IF_LINK_MODE_DEFAULT
IF_LINK_MODE_DORMANT
IF_LINK_MODE_TESTING
IF_OPER_DORMANT
IF_OPER_DOWN
IF_OPER_LOWERLAYERDOWN
IF_OPER_NOTPRESENT
IF_OPER_TESTING
IF_OPER_UNKNOWN
IF_OPER_UP
IFA_ADDRESS
IFA_ANYCAST
IFA_BROADCAST
Expand Down
13 changes: 13 additions & 0 deletions src/unix/linux_like/linux/mod.rs
Expand Up @@ -3029,6 +3029,19 @@ pub const ALG_SET_AEAD_AUTHSIZE: ::c_int = 5;
pub const ALG_OP_DECRYPT: ::c_int = 0;
pub const ALG_OP_ENCRYPT: ::c_int = 1;

// include/uapi/linux/if.h
pub const IF_OPER_UNKNOWN: ::c_int = 0;
pub const IF_OPER_NOTPRESENT: ::c_int = 1;
pub const IF_OPER_DOWN: ::c_int = 2;
pub const IF_OPER_LOWERLAYERDOWN: ::c_int = 3;
pub const IF_OPER_TESTING: ::c_int = 4;
pub const IF_OPER_DORMANT: ::c_int = 5;
pub const IF_OPER_UP: ::c_int = 6;

pub const IF_LINK_MODE_DEFAULT: ::c_int = 0;
pub const IF_LINK_MODE_DORMANT: ::c_int = 1;
pub const IF_LINK_MODE_TESTING: ::c_int = 2;

// include/uapi/linux/udp.h
pub const UDP_CORK: ::c_int = 1;
pub const UDP_ENCAP: ::c_int = 100;
Expand Down

0 comments on commit 44cfc0e

Please sign in to comment.