1 #ifndef __NET_NETLINK_WRAPPER_H
2 #define __NET_NETLINK_WRAPPER_H 1
4 #include_next <net/netlink.h>
6 #ifndef HAVE_NLA_NUL_STRING
7 #define NLA_NUL_STRING NLA_STRING
9 static inline int VERIFY_NUL_STRING(struct nlattr *attr)
11 return (!attr || (nla_len(attr)
12 && memchr(nla_data(attr), '\0', nla_len(attr)))
16 static inline int VERIFY_NUL_STRING(struct nlattr *attr)
20 #endif /* !HAVE_NLA_NUL_STRING */
22 #endif /* net/netlink.h */