]> git.proxmox.com Git - mirror_frr.git/blame - zebra/redistribute.h
Merge pull request #3506 from opensourcerouting/6.0-init-fixes
[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
1002497a 32/* ZAPI command handlers */
89f4e507
QY
33extern void zebra_redistribute_add(ZAPI_HANDLER_ARGS);
34extern void zebra_redistribute_delete(ZAPI_HANDLER_ARGS);
35extern void zebra_redistribute_default_add(ZAPI_HANDLER_ARGS);
36extern void zebra_redistribute_default_delete(ZAPI_HANDLER_ARGS);
1002497a 37/* ----------------- */
718e3744 38
86391e56
MS
39extern void redistribute_update(const struct prefix *p,
40 const struct prefix *src_p,
d62a17ae 41 struct route_entry *, struct route_entry *);
86391e56
MS
42extern void redistribute_delete(const struct prefix *p,
43 const struct prefix *src_p,
d62a17ae 44 struct route_entry *);
718e3744 45
d62a17ae 46extern void zebra_interface_up_update(struct interface *);
47extern void zebra_interface_down_update(struct interface *);
718e3744 48
d62a17ae 49extern void zebra_interface_add_update(struct interface *);
50extern void zebra_interface_delete_update(struct interface *);
718e3744 51
d62a17ae 52extern void zebra_interface_address_add_update(struct interface *,
53 struct connected *);
54extern void zebra_interface_address_delete_update(struct interface *,
55 struct connected *c);
56extern void zebra_interface_parameters_update(struct interface *);
57extern void zebra_interface_vrf_update_del(struct interface *,
58 vrf_id_t new_vrf_id);
59extern void zebra_interface_vrf_update_add(struct interface *,
60 vrf_id_t old_vrf_id);
8902474b 61
d7c0a89a 62extern int zebra_import_table(afi_t afi, uint32_t table_id, uint32_t distance,
d62a17ae 63 const char *rmap_name, int add);
7a4bb9c5 64
d62a17ae 65extern int zebra_add_import_table_entry(struct route_node *rn,
66 struct route_entry *re,
67 const char *rmap_name);
68extern int zebra_del_import_table_entry(struct route_node *rn,
69 struct route_entry *re);
d7c0a89a 70extern int is_zebra_import_table_enabled(afi_t, uint32_t table_id);
7a4bb9c5
DS
71
72extern int zebra_import_table_config(struct vty *);
73
d5b8c216 74extern void zebra_import_table_rm_update(const char *rmap);
718e3744 75#endif /* _ZEBRA_REDISTRIBUTE_H */