]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_rnh_null.c
pimd: Note when a S,G stream should be a FHR as well
[mirror_frr.git] / zebra / zebra_rnh_null.c
CommitLineData
50e24903
DS
1/* Zebra next hop tracking code
2 * Copyright (C) 2013 Cumulus Networks, Inc.
3 *
4 * This file is part of Quagga.
5 *
6 * Quagga is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * Quagga is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with Quagga; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
fb018d25 21#include <zebra.h>
82f97584 22#include "vty.h"
fb018d25
DS
23#include "zebra/rib.h"
24#include "zebra/zserv.h"
25#include "zebra/zebra_rnh.h"
26
a50b580a
DS
27int zebra_rnh_ip_default_route = 0;
28int zebra_rnh_ipv6_default_route = 0;
29
5a8dfcd8
RW
30void
31zebra_free_rnh (struct rnh *rnh)
32{}
33
d50b5bdd 34void zebra_evaluate_rnh (vrf_id_t vrfid, int family, int force, rnh_type_t type,
078430f6 35 struct prefix *p)
d50b5bdd 36{}
fb018d25 37
af41b63a 38void zebra_print_rnh_table (vrf_id_t vrfid, int family, struct vty *vty,
078430f6 39 rnh_type_t type)
fb018d25 40{}
6e26278c 41
d82ae0de 42void zebra_register_rnh_static_nh(vrf_id_t vrfid, struct prefix *p, struct route_node *rn)
6e26278c
DS
43{}
44
d82ae0de 45void zebra_deregister_rnh_static_nh(vrf_id_t vrfid, struct prefix *p, struct route_node *rn)
6e26278c 46{}
a399694f 47
d82ae0de 48void zebra_deregister_rnh_static_nexthops (vrf_id_t vrfid, struct nexthop *nexthop,
49 struct route_node *rn)
a399694f 50{}