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_updgrp.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_updgrp.h')
-rw-r--r-- | bgpd/bgp_updgrp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bgpd/bgp_updgrp.h b/bgpd/bgp_updgrp.h index fcb8406c8..b1d852d38 100644 --- a/bgpd/bgp_updgrp.h +++ b/bgpd/bgp_updgrp.h @@ -293,7 +293,7 @@ typedef int (*updgrp_walkcb)(struct update_group *updgrp, void *ctx); struct updwalk_context { struct vty *vty; struct bgp_node *rn; - struct bgp_path_info *ri; + struct bgp_path_info *pi; uint64_t updgrp_id; uint64_t subgrp_id; bgp_policy_type_e policy_type; @@ -442,7 +442,7 @@ extern void subgroup_announce_all(struct update_subgroup *subgrp); extern void subgroup_default_originate(struct update_subgroup *subgrp, int withdraw); extern void group_announce_route(struct bgp *bgp, afi_t afi, safi_t safi, - struct bgp_node *rn, struct bgp_path_info *ri); + struct bgp_node *rn, struct bgp_path_info *pi); extern void subgroup_clear_table(struct update_subgroup *subgrp); extern void update_group_announce(struct bgp *bgp); extern void update_group_announce_rrclients(struct bgp *bgp); @@ -470,7 +470,7 @@ extern int update_group_clear_update_dbg(struct update_group *updgrp, extern void update_bgp_group_free(struct bgp *bgp); extern int bgp_addpath_encode_tx(struct peer *peer, afi_t afi, safi_t safi); extern int bgp_addpath_tx_path(struct peer *peer, afi_t afi, safi_t safi, - struct bgp_path_info *ri); + struct bgp_path_info *pi); /* * Inline functions |