@@ -40,6 +40,7 @@
#include <sys/socket.h>
#include <linux/netlink.h>
#include <linux/rtnetlink.h>
+#include <netlink/msg.h>
#define SNDBUF_SIZE (1024 * 2)
#define RCVBUF_SIZE (1024 * 4)
@@ -52,19 +53,16 @@
} \
}
-#define NLMSG_TAIL(nmsg) \
- ((struct rtattr *)(((uint8_t *)(nmsg)) + NLMSG_ALIGN((nmsg)->nlmsg_len)))
-
#define SITNL_NEST(_msg, _max_size, _attr) \
({ \
- struct rtattr *_nest = NLMSG_TAIL(_msg); \
+ struct rtattr *_nest = nlmsg_tail(_msg); \
SITNL_ADDATTR(_msg, _max_size, _attr, NULL, 0); \
_nest; \
})
#define SITNL_NEST_END(_msg, _nest) \
{ \
- _nest->rta_len = (void *)NLMSG_TAIL(_msg) - (void *)_nest; \
+ _nest->rta_len = (void *)nlmsg_tail(_msg) - (void *)_nest; \
}
/**
@@ -130,7 +128,7 @@ sitnl_addattr(struct nlmsghdr *n, int maxlen, int type, const void *data,
return -EMSGSIZE;
}
- rta = NLMSG_TAIL(n);
+ rta = nlmsg_tail(n);
rta->rta_type = type;
rta->rta_len = len;