diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-05-13 08:00:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 08:00:08 +0200 |
commit | 6189cb3cf57f62881edab7fc1b773a50e08c4300 (patch) | |
tree | 92e97257760937eabcfd0606f39d2928a5a05515 /bgpd/bgp_mpath.h | |
parent | Merge pull request #11176 from anlancs/fix/bgpd-remove-for-type2-prefix (diff) | |
parent | bgpd: Align bgp_dump.h to our standards (diff) | |
download | frr-6189cb3cf57f62881edab7fc1b773a50e08c4300.tar.xz frr-6189cb3cf57f62881edab7fc1b773a50e08c4300.zip |
Merge pull request #11190 from donaldsharp/bgp_data
Fix #11178 and various other cleanup
Diffstat (limited to 'bgpd/bgp_mpath.h')
-rw-r--r-- | bgpd/bgp_mpath.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/bgpd/bgp_mpath.h b/bgpd/bgp_mpath.h index 5476297c3..4925f16dc 100644 --- a/bgpd/bgp_mpath.h +++ b/bgpd/bgp_mpath.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef _QUAGGA_BGP_MPATH_H -#define _QUAGGA_BGP_MPATH_H +#ifndef _FRR_BGP_MPATH_H +#define _FRR_BGP_MPATH_H /* Supplemental information linked to bgp_path_info for keeping track of * multipath selections, lazily allocated to save memory @@ -51,17 +51,19 @@ struct bgp_path_info_mpath { }; /* Functions to support maximum-paths configuration */ -extern int bgp_maximum_paths_set(struct bgp *, afi_t, safi_t, int, uint16_t, - uint16_t); -extern int bgp_maximum_paths_unset(struct bgp *, afi_t, safi_t, int); +extern int bgp_maximum_paths_set(struct bgp *bgp, afi_t afi, safi_t safi, + int peertype, uint16_t maxpaths, + bool clusterlen); +extern int bgp_maximum_paths_unset(struct bgp *bgp, afi_t afi, safi_t safi, + int peertype); /* Functions used by bgp_best_selection to record current * multipath selections */ extern int bgp_path_info_nexthop_cmp(struct bgp_path_info *bpi1, struct bgp_path_info *bpi2); -extern void bgp_mp_list_init(struct list *); -extern void bgp_mp_list_clear(struct list *); +extern void bgp_mp_list_init(struct list *mp_list); +extern void bgp_mp_list_clear(struct list *mp_list); extern void bgp_mp_list_add(struct list *mp_list, struct bgp_path_info *mpinfo); extern void bgp_mp_dmed_deselect(struct bgp_path_info *dmed_best); extern void bgp_path_info_mpath_update(struct bgp *bgp, struct bgp_dest *dest, @@ -90,4 +92,4 @@ extern bool bgp_path_info_mpath_chkwtd(struct bgp *bgp, struct bgp_path_info *path); extern uint64_t bgp_path_info_mpath_cumbw(struct bgp_path_info *path); -#endif /* _QUAGGA_BGP_MPATH_H */ +#endif /* _FRR_BGP_MPATH_H */ |