]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/rfapi/rfapi_ap.h
Merge remote-tracking branch 'origin/stable/3.0'
[mirror_frr.git] / bgpd / rfapi / rfapi_ap.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 #ifndef _QUAGGA_BGP_RFAPI_AP_H
21 #define _QUAGGA_BGP_RFAPI_AP_H
22
23 /* TBD delete some of these #includes */
24
25 #include <errno.h>
26
27 #include "lib/zebra.h"
28 #include "lib/prefix.h"
29 #include "lib/table.h"
30 #include "lib/vty.h"
31 #include "lib/memory.h"
32 #include "lib/routemap.h"
33 #include "lib/log.h"
34 #include "lib/linklist.h"
35 #include "lib/command.h"
36 #include "lib/stream.h"
37
38 #include "bgpd/bgpd.h"
39
40 #include "bgp_rfapi_cfg.h"
41 #include "rfapi.h"
42 #include "rfapi_backend.h"
43
44 #include "bgpd/bgp_route.h"
45 #include "bgpd/bgp_aspath.h"
46 #include "bgpd/bgp_advertise.h"
47
48 #include "rfapi_import.h"
49 #include "rfapi_private.h"
50 #include "rfapi_monitor.h"
51 #include "rfapi_vty.h"
52 #include "vnc_export_bgp.h"
53 #include "vnc_export_bgp_p.h"
54 #include "vnc_zebra.h"
55 #include "vnc_import_bgp.h"
56 #include "rfapi_rib.h"
57
58
59 extern void
60 rfapiApInit (struct rfapi_advertised_prefixes *ap);
61
62 extern void
63 rfapiApRelease (struct rfapi_advertised_prefixes *ap);
64
65 extern int
66 rfapiApCount (struct rfapi_descriptor *rfd);
67
68
69 extern int
70 rfapiApCountAll (struct bgp *bgp);
71
72 extern void
73 rfapiApReadvertiseAll (struct bgp *bgp, struct rfapi_descriptor *rfd);
74
75 extern void
76 rfapiApWithdrawAll (struct bgp *bgp, struct rfapi_descriptor *rfd);
77
78 extern int
79 rfapiApAdd (
80 struct bgp *bgp,
81 struct rfapi_descriptor *rfd,
82 struct prefix *pfx_ip,
83 struct prefix *pfx_eth,
84 struct prefix_rd *prd,
85 uint32_t lifetime,
86 uint8_t cost,
87 struct rfapi_l2address_option *l2o); /* other options TBD */
88
89 extern int
90 rfapiApDelete (
91 struct bgp *bgp,
92 struct rfapi_descriptor *rfd,
93 struct prefix *pfx_ip,
94 struct prefix *pfx_eth,
95 struct prefix_rd *prd,
96 int *advertise_tunnel); /* out */
97
98
99 #endif /* _QUAGGA_BGP_RFAPI_AP_H */