]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_routemap.h
doc: Add `show ipv6 rpf X:X::X:X` command to docs
[mirror_frr.git] / zebra / zebra_routemap.h
1 /*
2 * Zebra routemap header
3 * Copyright (C) 2015 Cumulus Networks, Inc.
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_ROUTEMAP_H__
23 #define __ZEBRA_ROUTEMAP_H__
24
25 #include "lib/routemap.h"
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 extern void zebra_route_map_init(void);
32 extern void zebra_routemap_config_write_protocol(struct vty *vty,
33 struct zebra_vrf *vrf);
34 extern char *zebra_get_import_table_route_map(afi_t afi, uint32_t table);
35 extern void zebra_add_import_table_route_map(afi_t afi, const char *rmap_name,
36 uint32_t table);
37 extern void zebra_del_import_table_route_map(afi_t afi, uint32_t table);
38
39 extern route_map_result_t
40 zebra_import_table_route_map_check(int family, int rib_type, uint8_t instance,
41 const struct prefix *p,
42 struct nexthop *nexthop, vrf_id_t vrf_id,
43 route_tag_t tag, const char *rmap_name);
44 extern route_map_result_t
45 zebra_route_map_check(afi_t family, int rib_type, uint8_t instance,
46 const struct prefix *p, struct nexthop *nexthop,
47 struct zebra_vrf *zvrf, route_tag_t tag);
48 extern route_map_result_t
49 zebra_nht_route_map_check(afi_t afi, int client_proto, const struct prefix *p,
50 struct zebra_vrf *zvrf, struct route_entry *,
51 struct nexthop *nexthop);
52
53 extern void zebra_routemap_vrf_delete(struct zebra_vrf *zvrf);
54
55 #ifdef __cplusplus
56 }
57 #endif
58
59 extern void zebra_routemap_finish(void);
60
61 extern const struct frr_yang_module_info frr_zebra_route_map_info;
62 #endif