]> git.proxmox.com Git - mirror_frr.git/blob - zebra/redistribute.h
Merge pull request #1084 from donaldsharp/zebra_frame
[mirror_frr.git] / zebra / redistribute.h
1 /*
2 * Redistribution Handler
3 * Copyright (C) 1999 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #ifndef _ZEBRA_REDISTRIBUTE_H
23 #define _ZEBRA_REDISTRIBUTE_H
24
25 #include "table.h"
26 #include "zserv.h"
27 #include "vty.h"
28 #include "vrf.h"
29
30 extern void zebra_redistribute_add(int, struct zserv *, int,
31 struct zebra_vrf *zvrf);
32 extern void zebra_redistribute_delete(int, struct zserv *, int,
33 struct zebra_vrf *zvrf);
34
35 extern void zebra_redistribute_default_add(int, struct zserv *, int,
36 struct zebra_vrf *zvrf);
37 extern void zebra_redistribute_default_delete(int, struct zserv *, int,
38 struct zebra_vrf *zvrf);
39
40 extern void redistribute_update(struct prefix *, struct prefix *,
41 struct route_entry *, struct route_entry *);
42 extern void redistribute_delete(struct prefix *, struct prefix *,
43 struct route_entry *);
44
45 extern void zebra_interface_up_update(struct interface *);
46 extern void zebra_interface_down_update(struct interface *);
47
48 extern void zebra_interface_add_update(struct interface *);
49 extern void zebra_interface_delete_update(struct interface *);
50
51 extern void zebra_interface_address_add_update(struct interface *,
52 struct connected *);
53 extern void zebra_interface_address_delete_update(struct interface *,
54 struct connected *c);
55 extern void zebra_interface_parameters_update(struct interface *);
56 extern void zebra_interface_vrf_update_del(struct interface *,
57 vrf_id_t new_vrf_id);
58 extern void zebra_interface_vrf_update_add(struct interface *,
59 vrf_id_t old_vrf_id);
60
61 extern int zebra_import_table(afi_t afi, u_int32_t table_id, u_int32_t distance,
62 const char *rmap_name, int add);
63
64 extern int zebra_add_import_table_entry(struct route_node *rn,
65 struct route_entry *re,
66 const char *rmap_name);
67 extern int zebra_del_import_table_entry(struct route_node *rn,
68 struct route_entry *re);
69 extern int is_zebra_import_table_enabled(afi_t, u_int32_t table_id);
70
71 extern int zebra_import_table_config(struct vty *);
72
73 extern void zebra_import_table_rm_update(void);
74
75 #endif /* _ZEBRA_REDISTRIBUTE_H */