]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/rfapi/rfapi_ap.h
*: reindent
[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 rfapiApInit(struct rfapi_advertised_prefixes *ap);
60
61 extern void rfapiApRelease(struct rfapi_advertised_prefixes *ap);
62
63 extern int rfapiApCount(struct rfapi_descriptor *rfd);
64
65
66 extern int rfapiApCountAll(struct bgp *bgp);
67
68 extern void rfapiApReadvertiseAll(struct bgp *bgp,
69 struct rfapi_descriptor *rfd);
70
71 extern void rfapiApWithdrawAll(struct bgp *bgp, struct rfapi_descriptor *rfd);
72
73 extern int
74 rfapiApAdd(struct bgp *bgp, struct rfapi_descriptor *rfd, struct prefix *pfx_ip,
75 struct prefix *pfx_eth, struct prefix_rd *prd, uint32_t lifetime,
76 uint8_t cost,
77 struct rfapi_l2address_option *l2o); /* other options TBD */
78
79 extern int rfapiApDelete(struct bgp *bgp, struct rfapi_descriptor *rfd,
80 struct prefix *pfx_ip, struct prefix *pfx_eth,
81 struct prefix_rd *prd,
82 int *advertise_tunnel); /* out */
83
84
85 #endif /* _QUAGGA_BGP_RFAPI_AP_H */