diff options
author | vivek <vivek@cumulusnetworks.com> | 2016-10-17 21:39:55 +0200 |
---|---|---|
committer | vivek <vivek@cumulusnetworks.com> | 2016-10-17 21:39:55 +0200 |
commit | 1fdc9eae2d80ec361e2a22d588944013a5d9b0b7 (patch) | |
tree | 69422d28f9d412a1e972569fd6d692121ff62a4a /configure.ac | |
parent | zebra: Derive VRF Id for slave interfaces correctly (diff) | |
download | frr-1fdc9eae2d80ec361e2a22d588944013a5d9b0b7.tar.xz frr-1fdc9eae2d80ec361e2a22d588944013a5d9b0b7.zip |
zebra: Refactor netlink interactions
Separate core netlink functions and library functions from route-related
interactions and interface-related interactions.
Signed-off-by: Vivek Venkatraman <vivek@cumulusnetworks.com>
Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com>
Reviewed-by: Don Slice <dslice@cumulusnetworks.com>
Ticket: CM-13199
Reviewed By: CCR-5254
Testing Done: bgp-min, ospf-min
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 703948553..e22dab8d0 100755 --- a/configure.ac +++ b/configure.ac @@ -935,6 +935,7 @@ AC_MSG_CHECKING(zebra between kernel interface method) if test x"$opsys" = x"gnu-linux"; then AC_MSG_RESULT(netlink) RT_METHOD=rt_netlink.o + KERNEL_METHOD=kernel_netlink.o AC_DEFINE(HAVE_NETLINK,,netlink) netlink=yes AC_CHECK_DECLS([IFLA_INFO_SLAVE_KIND], [], [], [#include <linux/if_link.h>]) |