File tree Expand file tree Collapse file tree 4 files changed +20
-0
lines changed Expand file tree Collapse file tree 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 @@ -1985,6 +1985,12 @@ pub const NLM_F_EXCL: c_int = 0x200;
1985
1985
pub const NLM_F_CREATE : c_int = 0x400 ;
1986
1986
pub const NLM_F_APPEND : c_int = 0x800 ;
1987
1987
1988
+ pub const NLM_F_NONREC : c_int = 0x100 ;
1989
+ pub const NLM_F_BULK : c_int = 0x200 ;
1990
+
1991
+ pub const NLM_F_CAPPED : c_int = 0x100 ;
1992
+ pub const NLM_F_ACK_TLVS : c_int = 0x200 ;
1993
+
1988
1994
pub const NLMSG_NOOP : c_int = 0x1 ;
1989
1995
pub const NLMSG_ERROR : c_int = 0x2 ;
1990
1996
pub const NLMSG_DONE : c_int = 0x3 ;
Original file line number Diff line number Diff line change @@ -4419,6 +4419,12 @@ pub const NLM_F_EXCL: c_int = 0x200;
4419
4419
pub const NLM_F_CREATE : c_int = 0x400 ;
4420
4420
pub const NLM_F_APPEND : c_int = 0x800 ;
4421
4421
4422
+ pub const NLM_F_NONREC : c_int = 0x100 ;
4423
+ pub const NLM_F_BULK : c_int = 0x200 ;
4424
+
4425
+ pub const NLM_F_CAPPED : c_int = 0x100 ;
4426
+ pub const NLM_F_ACK_TLVS : c_int = 0x200 ;
4427
+
4422
4428
pub const NETLINK_ADD_MEMBERSHIP : c_int = 1 ;
4423
4429
pub const NETLINK_DROP_MEMBERSHIP : c_int = 2 ;
4424
4430
pub const NETLINK_PKTINFO : c_int = 3 ;
You can’t perform that action at this time.
0 commit comments