diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2016-09-21 01:50:47 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-09-23 15:31:24 +0200 |
commit | a4b46f4c16bd4cb1f2c890c08ff541468d59d9b3 (patch) | |
tree | 0aeca486b13a1d95e3a76202d91fb7bfd7f8551b /ripd | |
parent | zserv: always send all information about each route (diff) | |
download | frr-a4b46f4c16bd4cb1f2c890c08ff541468d59d9b3.tar.xz frr-a4b46f4c16bd4cb1f2c890c08ff541468d59d9b3.zip |
*: remove dead code
Since recently zebra uses only the ZEBRA_REDISTRIBUTE_* messages
to advertise redistributed routes to its clientes. Now the old
ZEBRA_IPV*_ROUTE_* messages are only used for client->zebra communication.
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'ripd')
-rw-r--r-- | ripd/rip_zebra.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ripd/rip_zebra.c b/ripd/rip_zebra.c index 6ca27d01d..c312641d4 100644 --- a/ripd/rip_zebra.c +++ b/ripd/rip_zebra.c @@ -723,8 +723,6 @@ rip_zclient_init (struct thread_master *master) zclient->interface_delete = rip_interface_delete; zclient->interface_address_add = rip_interface_address_add; zclient->interface_address_delete = rip_interface_address_delete; - zclient->ipv4_route_add = rip_zebra_read_ipv4; - zclient->ipv4_route_delete = rip_zebra_read_ipv4; zclient->interface_up = rip_interface_up; zclient->interface_down = rip_interface_down; zclient->redistribute_route_ipv4_add = rip_zebra_read_ipv4; |