diff options
Diffstat (limited to 'bgpd/bgp_route.h')
| -rw-r--r-- | bgpd/bgp_route.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/bgpd/bgp_route.h b/bgpd/bgp_route.h index 7755687700..c45dcaa516 100644 --- a/bgpd/bgp_route.h +++ b/bgpd/bgp_route.h @@ -766,7 +766,7 @@ extern void bgp_config_write_distance(struct vty *, struct bgp *, afi_t,  extern void bgp_aggregate_delete(struct bgp *bgp, const struct prefix *p,  				 afi_t afi, safi_t safi,  				 struct bgp_aggregate *aggregate); -extern void bgp_aggregate_route(struct bgp *bgp, const struct prefix *p, +extern bool bgp_aggregate_route(struct bgp *bgp, const struct prefix *p,  				afi_t afi, safi_t safi,  				struct bgp_aggregate *aggregate);  extern void bgp_aggregate_increment(struct bgp *bgp, const struct prefix *p, @@ -877,6 +877,7 @@ extern void bgp_path_info_free_with_caller(const char *caller,  extern void bgp_path_info_add_with_caller(const char *caller,  					  struct bgp_dest *dest,  					  struct bgp_path_info *pi); +extern void bgp_aggregate_free(struct bgp_aggregate *aggregate);  #define bgp_path_info_add(A, B)                                                \  	bgp_path_info_add_with_caller(__func__, (A), (B))  #define bgp_path_info_free(B) bgp_path_info_free_with_caller(__func__, (B))  | 
