]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_routemap.h
isisd: implement the 'lsp-too-large' notification
[mirror_frr.git] / zebra / zebra_routemap.h
CommitLineData
6baf7bb8
DS
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 *
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
6baf7bb8
DS
20 */
21
22#ifndef __ZEBRA_ROUTEMAP_H__
23#define __ZEBRA_ROUTEMAP_H__
24
bf094f69
QY
25#include "lib/routemap.h"
26
05f7f5db 27extern void zebra_route_map_init(void);
7cf16e19 28extern void zebra_routemap_config_write_protocol(struct vty *vty,
29 struct zebra_vrf *vrf);
d62a17ae 30extern char *zebra_get_import_table_route_map(afi_t afi, uint32_t table);
31extern void zebra_add_import_table_route_map(afi_t afi, const char *rmap_name,
32 uint32_t table);
33extern void zebra_del_import_table_route_map(afi_t afi, uint32_t table);
8902474b
DS
34
35extern void zebra_route_map_write_delay_timer(struct vty *);
36
d62a17ae 37extern route_map_result_t
633a66a5 38zebra_import_table_route_map_check(int family, int rib_type, uint8_t instance,
123214ef 39 const struct prefix *p,
7cf16e19 40 struct nexthop *nexthop, vrf_id_t vrf_id,
41 route_tag_t tag, const char *rmap_name);
633a66a5
DS
42extern route_map_result_t
43zebra_route_map_check(int family, int rib_type, uint8_t instance,
86391e56 44 const struct prefix *p, struct nexthop *nexthop,
ac6eebce 45 struct zebra_vrf *zvrf, route_tag_t tag);
d62a17ae 46extern route_map_result_t
123214ef 47zebra_nht_route_map_check(int family, int client_proto, const struct prefix *p,
ac6eebce 48 struct zebra_vrf *zvrf, struct route_entry *,
49 struct nexthop *nexthop);
6baf7bb8
DS
50
51#endif