diff options
Diffstat (limited to 'bgpd/bgp_mpath.h')
| -rw-r--r-- | bgpd/bgp_mpath.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/bgpd/bgp_mpath.h b/bgpd/bgp_mpath.h index 48af14eb79..1fa11d3d0e 100644 --- a/bgpd/bgp_mpath.h +++ b/bgpd/bgp_mpath.h @@ -36,15 +36,15 @@ struct bgp_info_mpath {  	struct bgp_info *mp_info;  	/* When attached to best path, the number of selected multipaths */ -	u_int32_t mp_count; +	uint32_t mp_count;  	/* Aggregated attribute for advertising multipath route */  	struct attr *mp_attr;  };  /* Functions to support maximum-paths configuration */ -extern int bgp_maximum_paths_set(struct bgp *, afi_t, safi_t, int, u_int16_t, -				 u_int16_t); +extern int bgp_maximum_paths_set(struct bgp *, afi_t, safi_t, int, uint16_t, +				 uint16_t);  extern int bgp_maximum_paths_unset(struct bgp *, afi_t, safi_t, int);  /* Functions used by bgp_best_selection to record current @@ -70,7 +70,7 @@ extern struct bgp_info *bgp_info_mpath_first(struct bgp_info *);  extern struct bgp_info *bgp_info_mpath_next(struct bgp_info *);  /* Accessors for multipath information */ -extern u_int32_t bgp_info_mpath_count(struct bgp_info *); +extern uint32_t bgp_info_mpath_count(struct bgp_info *);  extern struct attr *bgp_info_mpath_attr(struct bgp_info *);  #endif /* _QUAGGA_BGP_MPATH_H */  | 
