diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-10-02 16:41:30 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-10-09 14:14:25 -0400 | 
| commit | 4b7e60662595e43aaf41046746fcaa97d17abb5d (patch) | |
| tree | 0d991048b7b8e4d1a773141711f75173fee14059 /bgpd/bgp_updgrp.h | |
| parent | 1defdda8e840182f555879016c127c35c48183d9 (diff) | |
bgpd: Convert `struct bgp_info` to `struct bgp_path_info`
Do a straight conversion of `struct bgp_info` to `struct bgp_path_info`.
This commit will setup the rename of variables as well.
This is being done because `struct bgp_info` is not descriptive
of what this data actually is.  It is path information for routes
that we keep to build the actual routes nexthops plus some extra
information.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'bgpd/bgp_updgrp.h')
| -rw-r--r-- | bgpd/bgp_updgrp.h | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/bgpd/bgp_updgrp.h b/bgpd/bgp_updgrp.h index c1cbca6dcf..b7b73e786f 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_info *ri; +	struct bgp_path_info *ri;  	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_info *ri); +				 struct bgp_node *rn, struct bgp_path_info *ri);  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); @@ -455,7 +455,8 @@ extern void bgp_adj_out_remove_subgroup(struct bgp_node *rn,  					struct update_subgroup *subgrp);  extern void bgp_adj_out_set_subgroup(struct bgp_node *rn,  				     struct update_subgroup *subgrp, -				     struct attr *attr, struct bgp_info *binfo); +				     struct attr *attr, +				     struct bgp_path_info *binfo);  extern void bgp_adj_out_unset_subgroup(struct bgp_node *rn,  				       struct update_subgroup *subgrp,  				       char withdraw, uint32_t addpath_tx_id); @@ -469,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_info *ri); +			       struct bgp_path_info *ri);  /*   * Inline functions  | 
