]> git.proxmox.com Git - mirror_frr.git/blame - zebra/redistribute_null.c
zebra: remove recursively derived static routes correctly
[mirror_frr.git] / zebra / redistribute_null.c
CommitLineData
46f4a4d2
PJ
1/*
2 * Copyright (C) 2006 Sun Microsystems, 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 */
21
457eb9af
PJ
22#include <zebra.h>
23#include "zebra/rib.h"
24#include "zebra/zserv.h"
25
26#include "zebra/redistribute.h"
27
7076bb2f 28void zebra_redistribute_add (int a, struct zserv *b, int c,
d651649e 29 struct zebra_vrf *zvrf)
457eb9af 30{ return; }
7076bb2f 31void zebra_redistribute_delete (int a, struct zserv *b, int c,
d651649e 32 struct zebra_vrf *zvrf)
327c4cdf 33{ return; }
7076bb2f 34void zebra_redistribute_default_add (int a, struct zserv *b, int c,
d651649e 35 struct zebra_vrf *zvrf)
327c4cdf 36{ return; }
7076bb2f 37void zebra_redistribute_default_delete (int a, struct zserv *b, int c,
d651649e 38 struct zebra_vrf *zvrf)
327c4cdf 39{ return; }
457eb9af 40
c41fc67b 41void redistribute_update (struct prefix *a, struct rib *b, struct rib *c)
457eb9af 42{ return; }
327c4cdf
DV
43void redistribute_delete (struct prefix *a, struct rib *b)
44{ return; }
457eb9af
PJ
45
46void zebra_interface_up_update (struct interface *a)
47{ return; }
327c4cdf
DV
48void zebra_interface_down_update (struct interface *a)
49{ return; }
50void zebra_interface_add_update (struct interface *a)
51{ return; }
52void zebra_interface_delete_update (struct interface *a)
53{ return; }
457eb9af 54
12f6fb97 55
457eb9af
PJ
56void zebra_interface_address_add_update (struct interface *a,
57 struct connected *b)
58{ return; }
327c4cdf
DV
59void zebra_interface_address_delete_update (struct interface *a,
60 struct connected *b)
61{ return; }
7a4bb9c5 62
c8e264b6 63void zebra_interface_vrf_update_del (struct interface *a, vrf_id_t new_vrf_id)
64{ return; }
65
66void zebra_interface_vrf_update_add (struct interface *a, vrf_id_t old_vrf_id)
67{ return; }
68
8902474b
DS
69int zebra_import_table (afi_t afi, u_int32_t table_id, u_int32_t distance,
70 const char *rmap_name, int add)
7a4bb9c5
DS
71{ return 0; }
72
8902474b 73int zebra_add_import_table_entry (struct route_node *rn, struct rib *rib, const char *rmap_name)
7a4bb9c5
DS
74{ return 0; }
75
76int zebra_del_import_table_entry (struct route_node *rn, struct rib *rib)
77{ return 0; }
78
79int is_zebra_import_table_enabled(afi_t afi, u_int32_t table_id)
80{ return 0; }
81
82int zebra_import_table_config(struct vty *vty)
83{ return 0; }
8902474b
DS
84
85void zebra_import_table_rm_update()
86{ return; }