]> git.proxmox.com Git - mirror_frr.git/blame - zebra/redistribute.h
zebra: silence zebra_serv_un unused warning
[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 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#ifndef _ZEBRA_REDISTRIBUTE_H
24#define _ZEBRA_REDISTRIBUTE_H
25
26#include "table.h"
5b73a671 27#include "zserv.h"
7a4bb9c5 28#include "vty.h"
12f6fb97 29#include "vrf.h"
718e3744 30
d651649e
DS
31extern void zebra_redistribute_add (int, struct zserv *, int, struct zebra_vrf *zvrf);
32extern void zebra_redistribute_delete (int, struct zserv *, int, struct zebra_vrf *zvrf);
718e3744 33
7076bb2f 34extern void zebra_redistribute_default_add (int, struct zserv *, int,
d651649e 35 struct zebra_vrf *zvrf);
7076bb2f 36extern void zebra_redistribute_default_delete (int, struct zserv *, int,
d651649e 37 struct zebra_vrf *zvrf);
718e3744 38
c41fc67b 39extern void redistribute_update (struct prefix *, struct rib *, struct rib *);
a1ac18c4 40extern void redistribute_delete (struct prefix *, struct rib *);
718e3744 41
a1ac18c4 42extern void zebra_interface_up_update (struct interface *);
43extern void zebra_interface_down_update (struct interface *);
718e3744 44
a1ac18c4 45extern void zebra_interface_add_update (struct interface *);
46extern void zebra_interface_delete_update (struct interface *);
718e3744 47
a1ac18c4 48extern void zebra_interface_address_add_update (struct interface *,
49 struct connected *);
50extern void zebra_interface_address_delete_update (struct interface *,
51 struct connected *c);
c8e264b6 52extern void zebra_interface_vrf_update_del (struct interface *, vrf_id_t new_vrf_id);
53extern void zebra_interface_vrf_update_add (struct interface *, vrf_id_t old_vrf_id);
8902474b 54
7a4bb9c5 55extern int zebra_import_table (afi_t afi, u_int32_t table_id,
8902474b 56 u_int32_t distance, const char *rmap_name, int add);
7a4bb9c5
DS
57
58extern int zebra_add_import_table_entry (struct route_node *rn,
8902474b 59 struct rib *rib, const char *rmap_name);
7a4bb9c5
DS
60extern int zebra_del_import_table_entry (struct route_node *rn,
61 struct rib *rib);
62extern int is_zebra_import_table_enabled(afi_t, u_int32_t table_id);
63
64extern int zebra_import_table_config(struct vty *);
65
8902474b
DS
66extern void zebra_import_table_rm_update(void);
67
7076bb2f
FL
68extern int is_default (struct prefix *);
69
718e3744 70#endif /* _ZEBRA_REDISTRIBUTE_H */
71