From b73abcfdc338455f525f0e1c1a169c69d615dde5 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 28 Apr 2008 14:16:57 -0700 Subject: [PATCH] Add missing NLM_F flags constants (oops). --- include/netlink-protocol.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/netlink-protocol.h b/include/netlink-protocol.h index c74d2254..43636f36 100644 --- a/include/netlink-protocol.h +++ b/include/netlink-protocol.h @@ -59,6 +59,11 @@ BUILD_ASSERT_DECL(sizeof(struct sockaddr_nl) == 12); #define NLM_F_ACK 0x004 #define NLM_F_ECHO 0x008 +#define NLM_F_ROOT 0x100 +#define NLM_F_MATCH 0x200 +#define NLM_F_ATOMIC 0x400 +#define NLM_F_DUMP (NLM_F_ROOT | NLM_F_MATCH) + /* nlmsg_type values. */ #define NLMSG_NOOP 1 #define NLMSG_ERROR 2 -- 2.30.2