summaryrefslogtreecommitdiffstats
path: root/package/libs/libnl-tiny/src/include
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-03-21 15:54:48 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-03-21 15:54:48 +0000
commit4621a855b2e35f14ee3310052fffe100203c301d (patch)
treec8e3e24ac1f85557ab5184d73b7a51669434efa7 /package/libs/libnl-tiny/src/include
parent19f9b22f09497e13457a6f45cbdff6ef6bdb1548 (diff)
downloadmaster-31e0f0ae-4621a855b2e35f14ee3310052fffe100203c301d.tar.gz
master-31e0f0ae-4621a855b2e35f14ee3310052fffe100203c301d.tar.bz2
master-31e0f0ae-4621a855b2e35f14ee3310052fffe100203c301d.zip
libnl-tiny: ensure compatibility to libnl version 3 and higher
To be prepared to support keepalived 1.2.10 and higher we need libnl3 or higher. The attached patch add some defines so that it can be build be libnl-tiny. Patch by Thomas Heil Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39991
Diffstat (limited to 'package/libs/libnl-tiny/src/include')
-rw-r--r--package/libs/libnl-tiny/src/include/netlink/errno.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/package/libs/libnl-tiny/src/include/netlink/errno.h b/package/libs/libnl-tiny/src/include/netlink/errno.h
index 0b43da02a9..f8b5130c22 100644
--- a/package/libs/libnl-tiny/src/include/netlink/errno.h
+++ b/package/libs/libnl-tiny/src/include/netlink/errno.h
@@ -45,8 +45,13 @@ extern "C" {
#define NLE_PROTO_MISMATCH 26
#define NLE_NOACCESS 27
#define NLE_PERM 28
+#define NLE_PKTLOC_FILE 29
+#define NLE_PARSE_ERR 30
+#define NLE_NODEV 31
+#define NLE_IMMUTABLE 32
+#define NLE_DUMP_INTR 33
-#define NLE_MAX NLE_PERM
+#define NLE_MAX NLE_DUMP_INTR
extern const char * nl_geterror(int);
extern void nl_perror(int, const char *);