]> git.proxmox.com Git - mirror_frr.git/blame - zebra/redistribute_null.c
ubuntu12.04: shorten frr-dbg description
[mirror_frr.git] / zebra / redistribute_null.c
CommitLineData
ac4d0be5 1/*
46f4a4d2
PJ
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
ac4d0be5 19 * 02111-1307, USA.
46f4a4d2
PJ
20 */
21
457eb9af 22#include <zebra.h>
82f97584 23#include "vty.h"
457eb9af
PJ
24#include "zebra/rib.h"
25#include "zebra/zserv.h"
26
27#include "zebra/redistribute.h"
28
ac4d0be5 29void zebra_redistribute_add(int a, struct zserv *b, int c,
30 struct zebra_vrf *zvrf)
31{
32 return;
33}
34void zebra_redistribute_delete(int a, struct zserv *b, int c,
35 struct zebra_vrf *zvrf)
36{
37 return;
38}
39void zebra_redistribute_default_add(int a, struct zserv *b, int c,
40 struct zebra_vrf *zvrf)
41{
42 return;
43}
44void zebra_redistribute_default_delete(int a, struct zserv *b, int c,
45 struct zebra_vrf *zvrf)
46{
47 return;
48}
49
50void redistribute_update(struct prefix *a, struct prefix *b, struct rib *c,
51 struct rib *d)
52{
53 return;
54}
55void redistribute_delete(struct prefix *a, struct prefix *b, struct rib *c)
56{
57 return;
58}
59
60void zebra_interface_up_update(struct interface *a)
61{
62 return;
63}
64void zebra_interface_down_update(struct interface *a)
65{
66 return;
67}
68void zebra_interface_add_update(struct interface *a)
69{
70 return;
71}
72void zebra_interface_delete_update(struct interface *a)
73{
74 return;
75}
76
77
78void zebra_interface_address_add_update(struct interface *a,
79 struct connected *b)
80{
81 return;
82}
83void zebra_interface_address_delete_update(struct interface *a,
84 struct connected *b)
85{
86 return;
87}
7a4bb9c5 88
16f1b9ee 89/* Interface parameters update */
ac4d0be5 90void zebra_interface_parameters_update(struct interface *ifp)
91{
92 return;
93};
94
95void zebra_interface_vrf_update_del(struct interface *a, vrf_id_t new_vrf_id)
96{
97 return;
98}
99
100void zebra_interface_vrf_update_add(struct interface *a, vrf_id_t old_vrf_id)
101{
102 return;
103}
104
105int zebra_import_table(afi_t afi, u_int32_t table_id, u_int32_t distance,
106 const char *rmap_name, int add)
107{
108 return 0;
109}
110
111int zebra_add_import_table_entry(struct route_node *rn, struct rib *rib,
112 const char *rmap_name)
113{
114 return 0;
115}
116
117int zebra_del_import_table_entry(struct route_node *rn, struct rib *rib)
118{
119 return 0;
120}
7a4bb9c5
DS
121
122int is_zebra_import_table_enabled(afi_t afi, u_int32_t table_id)
ac4d0be5 123{
124 return 0;
125}
7a4bb9c5
DS
126
127int zebra_import_table_config(struct vty *vty)
ac4d0be5 128{
129 return 0;
130}
8902474b
DS
131
132void zebra_import_table_rm_update()
ac4d0be5 133{
134 return;
135}