diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-10-03 00:34:03 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-10-09 20:26:30 +0200 |
commit | 9b6d8fcf29cee8a748daedf4ba9ce8704fef1a02 (patch) | |
tree | a0ebb5bb87b1c822b8a4f7f6f3843b237cfa5871 /bgpd/bgp_route.h | |
parent | bgpd: Convert all bgp_info_XXX functions to bgp_path_XXX functions (diff) | |
download | frr-9b6d8fcf29cee8a748daedf4ba9ce8704fef1a02.tar.xz frr-9b6d8fcf29cee8a748daedf4ba9ce8704fef1a02.zip |
bgpd: Convert binfo to path
Convert the binfo variable to path.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'bgpd/bgp_route.h')
-rw-r--r-- | bgpd/bgp_route.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_route.h b/bgpd/bgp_route.h index efcbf4c02..2bced5d5b 100644 --- a/bgpd/bgp_route.h +++ b/bgpd/bgp_route.h @@ -452,7 +452,7 @@ extern void route_vty_out_tmp(struct vty *vty, struct prefix *p, struct attr *attr, safi_t safi, bool use_json, json_object *json_ar); extern void route_vty_out_overlay(struct vty *vty, struct prefix *p, - struct bgp_path_info *binfo, int display, + struct bgp_path_info *path, int display, json_object *json); extern int subgroup_process_announce_selected(struct update_subgroup *subgrp, @@ -495,7 +495,7 @@ extern void route_vty_out_detail_header(struct vty *vty, struct bgp *bgp, struct prefix_rd *prd, afi_t afi, safi_t safi, json_object *json); extern void route_vty_out_detail(struct vty *vty, struct bgp *bgp, - struct prefix *p, struct bgp_path_info *binfo, + struct prefix *p, struct bgp_path_info *path, afi_t afi, safi_t safi, json_object *json_paths); extern int bgp_show_table_rd(struct vty *vty, struct bgp *bgp, safi_t safi, |