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 /sysdep | |
parent | 54635f435a76ad0f3141b09a9c5072f6e2e8c319 (diff) |
Adding also our copy of struct rtvia.
Diffstat (limited to 'sysdep')
-rw-r--r-- | sysdep/autoconf.h.in | 3 | ||||
-rw-r--r-- | sysdep/linux/netlink.c | 7 |
2 files changed, 10 insertions, 0 deletions
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 |