diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-05-12 08:11:46 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2022-05-12 10:20:28 -0400 | 
| commit | 0cf4a7688dfe89e315dca28b7ea56a797430996d (patch) | |
| tree | 9866863f608ceac4a1c0e405a71bbf4493ca7506 /bgpd | |
| parent | aa53c036c027dfcaef7a5da627bcda52a165be3b (diff) | |
bgpd: Align bgp_mpath.h to our standards
The bgp_mpath.h file was missing some variable names.  Let's
add them in to align with our standard for header files.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'bgpd')
| -rw-r--r-- | bgpd/bgp_mpath.h | 13 | 
1 files changed, 7 insertions, 6 deletions
diff --git a/bgpd/bgp_mpath.h b/bgpd/bgp_mpath.h index 585db018d4..4925f16dc1 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 @@ -54,15 +54,16 @@ struct bgp_path_info_mpath {  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 *, afi_t, safi_t, int); +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, @@ -91,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 */  | 
