diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-10-03 02:43:07 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-10-09 20:26:30 +0200 |
commit | 40381db7854c8c9bf7f6e37affc625aaf36131c7 (patch) | |
tree | 8b68bb9bb2b02754ca0cea513ef75287fff6fe47 /bgpd/bgp_mpath.h | |
parent | bgpd: Convert binfo to path (diff) | |
download | frr-40381db7854c8c9bf7f6e37affc625aaf36131c7.tar.xz frr-40381db7854c8c9bf7f6e37affc625aaf36131c7.zip |
bgpd: Rename various variable names to something more appropriate
ri -> pi
bi -> bpi
info -> path
info -> rmap_path ( for routemap applications )
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'bgpd/bgp_mpath.h')
-rw-r--r-- | bgpd/bgp_mpath.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_mpath.h b/bgpd/bgp_mpath.h index 0767d18a6..d15f3c903 100644 --- a/bgpd/bgp_mpath.h +++ b/bgpd/bgp_mpath.h @@ -50,8 +50,8 @@ extern int bgp_maximum_paths_unset(struct bgp *, afi_t, safi_t, int); /* Functions used by bgp_best_selection to record current * multipath selections */ -extern int bgp_path_info_nexthop_cmp(struct bgp_path_info *bi1, - struct bgp_path_info *bi2); +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_add(struct list *mp_list, struct bgp_path_info *mpinfo); |