diff options
author | Jan Moskyto Matejka <mq@ucw.cz> | 2017-04-05 14:26:37 +0200 |
---|---|---|
committer | Jan Moskyto Matejka <mq@ucw.cz> | 2017-04-12 16:04:22 +0200 |
commit | 97e48b6a18142d1aa11e909d094812f3fff4ea61 (patch) | |
tree | b96608eccdaf5f5da55449afc88804f350f7d4b0 | |
parent | 54635f435a76ad0f3141b09a9c5072f6e2e8c319 (diff) |
Adding also our copy of struct rtvia.
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | sysdep/autoconf.h.in | 3 | ||||
-rw-r--r-- | sysdep/linux/netlink.c | 7 |
3 files changed, 11 insertions, 0 deletions
diff --git a/configure.in b/configure.in index c37a0264..a661734a 100644 --- a/configure.in +++ b/configure.in @@ -219,6 +219,7 @@ esac AC_CHECK_HEADER(syslog.h, [AC_DEFINE(HAVE_SYSLOG)]) AC_CHECK_HEADER(alloca.h, [AC_DEFINE(HAVE_ALLOCA_H)]) AC_CHECK_HEADER([linux/lwtunnel.h], [AC_DEFINE(HAVE_LWTUNNEL)]) +AC_CHECK_MEMBERS([struct rtvia.rtvia_family], [AC_DEFINE(HAVE_STRUCT_RTVIA)],,[#include <linux/rtnetlink.h>]) AC_MSG_CHECKING(whether 'struct sockaddr' has sa_len) AC_TRY_COMPILE([#include <sys/types.h> #include <sys/socket.h> diff --git a/sysdep/autoconf.h.in b/sysdep/autoconf.h.in index 6f580846..fbaba2ce 100644 --- a/sysdep/autoconf.h.in +++ b/sysdep/autoconf.h.in @@ -77,4 +77,7 @@ /* We have linux lwtunnel */ #undef HAVE_LWTUNNEL +/* We have struct rtvia */ +#undef HAVE_STRUCT_RTVIA + #define CONFIG_PATH ? diff --git a/sysdep/linux/netlink.c b/sysdep/linux/netlink.c index bed97331..083a8d90 100644 --- a/sysdep/linux/netlink.c +++ b/sysdep/linux/netlink.c @@ -60,6 +60,13 @@ #define RTA_VIA 18 #endif +#ifndef HAVE_STRUCT_RTVIA +struct rtvia { + __kernel_sa_family_t rtvia_family; + __u8 rtvia_addr[0]; +}; +#endif + #ifndef RTA_NEWDST #define RTA_NEWDST 19 #endif |