]> git.proxmox.com Git - mirror_frr.git/blob - zebra/redistribute_null.c
all: removed all DEFUN command stomps
[mirror_frr.git] / zebra / redistribute_null.c
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
22 #include <zebra.h>
23 #include "vty.h"
24 #include "zebra/rib.h"
25 #include "zebra/zserv.h"
26
27 #include "zebra/redistribute.h"
28
29 void zebra_redistribute_add (int a, struct zserv *b, int c,
30 struct zebra_vrf *zvrf)
31 { return; }
32 void zebra_redistribute_delete (int a, struct zserv *b, int c,
33 struct zebra_vrf *zvrf)
34 { return; }
35 void zebra_redistribute_default_add (int a, struct zserv *b, int c,
36 struct zebra_vrf *zvrf)
37 { return; }
38 void zebra_redistribute_default_delete (int a, struct zserv *b, int c,
39 struct zebra_vrf *zvrf)
40 { return; }
41
42 void redistribute_update (struct prefix *a, struct rib *b, struct rib *c)
43 { return; }
44 void redistribute_delete (struct prefix *a, struct rib *b)
45 { return; }
46
47 void zebra_interface_up_update (struct interface *a)
48 { return; }
49 void zebra_interface_down_update (struct interface *a)
50 { return; }
51 void zebra_interface_add_update (struct interface *a)
52 { return; }
53 void zebra_interface_delete_update (struct interface *a)
54 { return; }
55
56
57 void zebra_interface_address_add_update (struct interface *a,
58 struct connected *b)
59 { return; }
60 void zebra_interface_address_delete_update (struct interface *a,
61 struct connected *b)
62 { return; }
63
64 /* Interface parameters update */
65 void zebra_interface_parameters_update (struct interface *ifp)
66 { return; };
67
68 void zebra_interface_vrf_update_del (struct interface *a, vrf_id_t new_vrf_id)
69 { return; }
70
71 void zebra_interface_vrf_update_add (struct interface *a, vrf_id_t old_vrf_id)
72 { return; }
73
74 int zebra_import_table (afi_t afi, u_int32_t table_id, u_int32_t distance,
75 const char *rmap_name, int add)
76 { return 0; }
77
78 int zebra_add_import_table_entry (struct route_node *rn, struct rib *rib, const char *rmap_name)
79 { return 0; }
80
81 int zebra_del_import_table_entry (struct route_node *rn, struct rib *rib)
82 { return 0; }
83
84 int is_zebra_import_table_enabled(afi_t afi, u_int32_t table_id)
85 { return 0; }
86
87 int zebra_import_table_config(struct vty *vty)
88 { return 0; }
89
90 void zebra_import_table_rm_update()
91 { return; }