Skip to content

Commit 2fc3ef9

Browse files
committed
Auto merge of #3276 - dragan-cecavac-nordsec:android/add-nlm_f_dump_filtered, r=JohnTitor
android: Add NLM_F_DUMP_FILTERED constant Add `NLM_F_DUMP_FILTERED` for Android. Bionic code reference: https://android.googlesource.com/platform/bionic/+/refs/heads/master/libc/kernel/uapi/linux/netlink.h#66
2 parents 1e8943d + 7c1d9b1 commit 2fc3ef9

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libc-test/semver/android.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1647,6 +1647,7 @@ NLM_F_APPEND
16471647
NLM_F_ATOMIC
16481648
NLM_F_CREATE
16491649
NLM_F_DUMP
1650+
NLM_F_DUMP_FILTERED
16501651
NLM_F_DUMP_INTR
16511652
NLM_F_ECHO
16521653
NLM_F_EXCL

src/unix/linux_like/android/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1831,6 +1831,7 @@ pub const NLM_F_MULTI: ::c_int = 2;
18311831
pub const NLM_F_ACK: ::c_int = 4;
18321832
pub const NLM_F_ECHO: ::c_int = 8;
18331833
pub const NLM_F_DUMP_INTR: ::c_int = 16;
1834+
pub const NLM_F_DUMP_FILTERED: ::c_int = 32;
18341835

18351836
pub const NLM_F_ROOT: ::c_int = 0x100;
18361837
pub const NLM_F_MATCH: ::c_int = 0x200;

0 commit comments

Comments
 (0)