diff options
| author | Christian Franke <chris@opensourcerouting.org> | 2013-07-05 15:35:37 +0000 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2013-09-19 18:04:40 +0200 | 
| commit | fa713d9ee5ed30dedd0a290be9aaff780a2896be (patch) | |
| tree | 1d263cce70c341f3f2a73a47d4b1cd5a38b09129 /tests/Makefile.am | |
| parent | bfac8dcd2fe7ed099a679b5c8245599c6d0312ed (diff) | |
zebra: rework recursive route resolution
Change the datastructure for recursive routes. This brings the following
benefits:
By using struct nexthop also to store nexthops obtained by recursive
resolution, we can get rid of quite a bit of code duplication in the fib
management. (rt_netlink, rt_socket, ...)
With the new datastructure we can make use of all available paths when
recursive routes are resolved with multipath routes.
Signed-off-by: Christian Franke <chris@opensourcerouting.org>
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'tests/Makefile.am')
| -rw-r--r-- | tests/Makefile.am | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 2ed0e1c5..e5c7fd79 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -25,7 +25,7 @@ TESTS_BGPD =  endif  check_PROGRAMS = testsig testbuffer testmemory heavy heavywq heavythread \ -		testprivs teststream testchecksum tabletest \ +		testprivs teststream testchecksum tabletest testnexthopiter \  		$(TESTS_BGPD)  testsig_SOURCES = test-sig.c @@ -43,6 +43,7 @@ testbgpmpattr_SOURCES =  bgp_mp_attr_test.c  testchecksum_SOURCES = test-checksum.c  testbgpmpath_SOURCES = bgp_mpath_test.c  tabletest_SOURCES = table_test.c +testnexthopiter_SOURCES = test-nexthop-iter.c prng.c  testsig_LDADD = ../lib/libzebra.la @LIBCAP@  testbuffer_LDADD = ../lib/libzebra.la @LIBCAP@ @@ -59,3 +60,4 @@ testbgpmpattr_LDADD = ../bgpd/libbgp.a ../lib/libzebra.la @LIBCAP@ -lm  testchecksum_LDADD = ../lib/libzebra.la @LIBCAP@   testbgpmpath_LDADD = ../bgpd/libbgp.a ../lib/libzebra.la @LIBCAP@ -lm  tabletest_LDADD = ../lib/libzebra.la @LIBCAP@ -lm +testnexthopiter_LDADD = ../lib/libzebra.la @LIBCAP@  | 
