]> git.proxmox.com Git - mirror_frr.git/blame - zebra/redistribute.h
Merge pull request #11843 from ARShreenidhi/ecmp_testcase
[mirror_frr.git] / zebra / redistribute.h
CommitLineData
718e3744 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 *
896014f4
DL
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
718e3744 20 */
21
22#ifndef _ZEBRA_REDISTRIBUTE_H
23#define _ZEBRA_REDISTRIBUTE_H
24
25#include "table.h"
7a4bb9c5 26#include "vty.h"
12f6fb97 27#include "vrf.h"
718e3744 28
bf094f69
QY
29#include "zebra/zserv.h"
30#include "zebra/rib.h"
31
51e94aa7
EDP
32#ifdef __cplusplus
33extern "C" {
34#endif
35
1002497a 36/* ZAPI command handlers */
89f4e507
QY
37extern void zebra_redistribute_add(ZAPI_HANDLER_ARGS);
38extern void zebra_redistribute_delete(ZAPI_HANDLER_ARGS);
39extern void zebra_redistribute_default_add(ZAPI_HANDLER_ARGS);
40extern void zebra_redistribute_default_delete(ZAPI_HANDLER_ARGS);
1002497a 41/* ----------------- */
718e3744 42
ee78ed68 43extern void redistribute_update(const struct route_node *rn,
40f321c0
MS
44 const struct route_entry *re,
45 const struct route_entry *prev_re);
46/*
47 * During a route delete, where 'new_re' is NULL, redist a delete to all
48 * clients registered for the type of 'old_re'.
49 * During a route update, redist a delete to any clients who will not see
50 * an update when the new route is installed. There are cases when a client
51 * may have seen a redist for 'old_re', but will not see
52 * the redist for 'new_re'.
53 */
b3a9fca1 54void redistribute_delete(const struct route_node *rn,
40f321c0
MS
55 const struct route_entry *old_re,
56 const struct route_entry *new_re);
718e3744 57
a1742ba8
DS
58extern void zebra_interface_up_update(struct interface *ifp);
59extern void zebra_interface_down_update(struct interface *ifp);
718e3744 60
a1742ba8
DS
61extern void zebra_interface_add_update(struct interface *ifp);
62extern void zebra_interface_delete_update(struct interface *ifp);
718e3744 63
a1742ba8
DS
64extern void zebra_interface_address_add_update(struct interface *ifp,
65 struct connected *c);
66extern void zebra_interface_address_delete_update(struct interface *ifp,
d62a17ae 67 struct connected *c);
a1742ba8
DS
68extern void zebra_interface_parameters_update(struct interface *ifp);
69extern void zebra_interface_vrf_update_del(struct interface *ifp,
d62a17ae 70 vrf_id_t new_vrf_id);
a1742ba8 71extern void zebra_interface_vrf_update_add(struct interface *ifp,
d62a17ae 72 vrf_id_t old_vrf_id);
8902474b 73
fe257ae7
DS
74extern int zebra_import_table(afi_t afi, vrf_id_t vrf_id,
75 uint32_t table_id, uint32_t distance,
d62a17ae 76 const char *rmap_name, int add);
7a4bb9c5 77
fe257ae7
DS
78extern int zebra_add_import_table_entry(struct zebra_vrf *zvrf,
79 struct route_node *rn,
d62a17ae 80 struct route_entry *re,
81 const char *rmap_name);
fe257ae7
DS
82extern int zebra_del_import_table_entry(struct zebra_vrf *zvrf,
83 struct route_node *rn,
d62a17ae 84 struct route_entry *re);
fe257ae7
DS
85extern int is_zebra_import_table_enabled(afi_t, vrf_id_t vrf_id,
86 uint32_t table_id);
7a4bb9c5 87
fe257ae7 88extern int zebra_import_table_config(struct vty *, vrf_id_t vrf_id);
7a4bb9c5 89
d5b8c216 90extern void zebra_import_table_rm_update(const char *rmap);
51e94aa7
EDP
91
92#ifdef __cplusplus
93}
94#endif
95
718e3744 96#endif /* _ZEBRA_REDISTRIBUTE_H */