summaryrefslogtreecommitdiff
path: root/include/netlink
diff options
context:
space:
mode:
Diffstat (limited to 'include/netlink')
-rw-r--r--include/netlink/errno.h3
-rw-r--r--include/netlink/handlers.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/include/netlink/errno.h b/include/netlink/errno.h
index 267a745..f8b5130 100644
--- a/include/netlink/errno.h
+++ b/include/netlink/errno.h
@@ -49,8 +49,9 @@ extern "C" {
#define NLE_PARSE_ERR 30
#define NLE_NODEV 31
#define NLE_IMMUTABLE 32
+#define NLE_DUMP_INTR 33
-#define NLE_MAX NLE_IMMUTABLE
+#define NLE_MAX NLE_DUMP_INTR
extern const char * nl_geterror(int);
extern void nl_perror(int, const char *);
diff --git a/include/netlink/handlers.h b/include/netlink/handlers.h
index f373f58..dfa2809 100644
--- a/include/netlink/handlers.h
+++ b/include/netlink/handlers.h
@@ -108,6 +108,8 @@ enum nl_cb_type {
NL_CB_SEQ_CHECK,
/** Sending of an acknowledge message has been requested */
NL_CB_SEND_ACK,
+ /** Flag NLM_F_DUMP_INTR is set in message */
+ NL_CB_DUMP_INTR,
__NL_CB_TYPE_MAX,
};