]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/rfapi/vnc_import_bgp_p.h
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / bgpd / rfapi / vnc_import_bgp_p.h
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 *
4 * Copyright 2009-2016, LabN Consulting, L.L.C.
5 *
6 */
7
8 #ifndef _QUAGGA_RFAPI_VNC_IMPORT_BGP_P_H_
9 #define _QUAGGA_RFAPI_VNC_IMPORT_BGP_P_H_
10
11 #include "lib/zebra.h"
12 #include "lib/prefix.h"
13
14 #include "bgpd/bgpd.h"
15 #include "bgpd/bgp_route.h"
16
17 extern void vnc_import_bgp_exterior_add_route_interior(
18 struct bgp *bgp, struct rfapi_import_table *it,
19 struct agg_node *rn_interior, /* VPN IT node */
20 struct bgp_path_info *bpi_interior); /* VPN IT route */
21
22 extern void vnc_import_bgp_exterior_del_route_interior(
23 struct bgp *bgp, struct rfapi_import_table *it,
24 struct agg_node *rn_interior, /* VPN IT node */
25 struct bgp_path_info *bpi_interior); /* VPN IT route */
26
27 extern void
28 vnc_import_bgp_exterior_redist_enable_it(struct bgp *bgp, afi_t afi,
29 struct rfapi_import_table *it_only);
30
31 #endif /* _QUAGGA_RFAPI_VNC_IMPORT_BGP_P_H_ */