]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/rfapi/vnc_import_bgp_p.h
Merge pull request #2913 from opensourcerouting/non-recursive-prep
[mirror_frr.git] / bgpd / rfapi / vnc_import_bgp_p.h
1 /*
2 *
3 * Copyright 2009-2016, LabN Consulting, L.L.C.
4 *
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #ifndef _QUAGGA_RFAPI_VNC_IMPORT_BGP_P_H_
22 #define _QUAGGA_RFAPI_VNC_IMPORT_BGP_P_H_
23
24 #include "lib/zebra.h"
25 #include "lib/prefix.h"
26
27 #include "bgpd/bgpd.h"
28 #include "bgpd/bgp_route.h"
29
30 extern void vnc_import_bgp_exterior_add_route_interior(
31 struct bgp *bgp, struct rfapi_import_table *it,
32 struct agg_node *rn_interior, /* VPN IT node */
33 struct bgp_info *bi_interior); /* VPN IT route */
34
35 extern void vnc_import_bgp_exterior_del_route_interior(
36 struct bgp *bgp, struct rfapi_import_table *it,
37 struct agg_node *rn_interior, /* VPN IT node */
38 struct bgp_info *bi_interior); /* VPN IT route */
39
40 extern void
41 vnc_import_bgp_exterior_redist_enable_it(struct bgp *bgp, afi_t afi,
42 struct rfapi_import_table *it_only);
43
44 #endif /* _QUAGGA_RFAPI_VNC_IMPORT_BGP_P_H_ */