File tree 4 files changed +20
-0
lines changed
4 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -1793,8 +1793,11 @@ NLMSG_MIN_TYPE
1793
1793
NLMSG_NOOP
1794
1794
NLMSG_OVERRUN
1795
1795
NLM_F_ACK
1796
+ NLM_F_ACK_TLVS
1796
1797
NLM_F_APPEND
1797
1798
NLM_F_ATOMIC
1799
+ NLM_F_BULK
1800
+ NLM_F_CAPPED
1798
1801
NLM_F_CREATE
1799
1802
NLM_F_DUMP
1800
1803
NLM_F_DUMP_FILTERED
@@ -1803,6 +1806,7 @@ NLM_F_ECHO
1803
1806
NLM_F_EXCL
1804
1807
NLM_F_MATCH
1805
1808
NLM_F_MULTI
1809
+ NLM_F_NONREC
1806
1810
NLM_F_REPLACE
1807
1811
NLM_F_REQUEST
1808
1812
NLM_F_ROOT
Original file line number Diff line number Diff line change @@ -1996,8 +1996,11 @@ NLMSG_MIN_TYPE
1996
1996
NLMSG_NOOP
1997
1997
NLMSG_OVERRUN
1998
1998
NLM_F_ACK
1999
+ NLM_F_ACK_TLVS
1999
2000
NLM_F_APPEND
2000
2001
NLM_F_ATOMIC
2002
+ NLM_F_BULK
2003
+ NLM_F_CAPPED
2001
2004
NLM_F_CREATE
2002
2005
NLM_F_DUMP
2003
2006
NLM_F_DUMP_FILTERED
@@ -2006,6 +2009,7 @@ NLM_F_ECHO
2006
2009
NLM_F_EXCL
2007
2010
NLM_F_MATCH
2008
2011
NLM_F_MULTI
2012
+ NLM_F_NONREC
2009
2013
NLM_F_REPLACE
2010
2014
NLM_F_REQUEST
2011
2015
NLM_F_ROOT
Original file line number Diff line number Diff line change @@ -1943,6 +1943,12 @@ pub const NLM_F_EXCL: c_int = 0x200;
1943
1943
pub const NLM_F_CREATE : c_int = 0x400 ;
1944
1944
pub const NLM_F_APPEND : c_int = 0x800 ;
1945
1945
1946
+ pub const NLM_F_NONREC : c_int = 0x100 ;
1947
+ pub const NLM_F_BULK : c_int = 0x200 ;
1948
+
1949
+ pub const NLM_F_CAPPED : c_int = 0x100 ;
1950
+ pub const NLM_F_ACK_TLVS : c_int = 0x200 ;
1951
+
1946
1952
pub const NLMSG_NOOP : c_int = 0x1 ;
1947
1953
pub const NLMSG_ERROR : c_int = 0x2 ;
1948
1954
pub const NLMSG_DONE : c_int = 0x3 ;
Original file line number Diff line number Diff line change @@ -4379,6 +4379,12 @@ pub const NLM_F_EXCL: c_int = 0x200;
4379
4379
pub const NLM_F_CREATE : c_int = 0x400 ;
4380
4380
pub const NLM_F_APPEND : c_int = 0x800 ;
4381
4381
4382
+ pub const NLM_F_NONREC : c_int = 0x100 ;
4383
+ pub const NLM_F_BULK : c_int = 0x200 ;
4384
+
4385
+ pub const NLM_F_CAPPED : c_int = 0x100 ;
4386
+ pub const NLM_F_ACK_TLVS : c_int = 0x200 ;
4387
+
4382
4388
pub const NETLINK_ADD_MEMBERSHIP : c_int = 1 ;
4383
4389
pub const NETLINK_DROP_MEMBERSHIP : c_int = 2 ;
4384
4390
pub const NETLINK_PKTINFO : c_int = 3 ;
You can’t perform that action at this time.
0 commit comments