diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-04-12 11:32:23 +0300 | 
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-04-12 22:13:55 +0300 | 
| commit | d54f55f22d582310b0894efe7ef1feafd5636007 (patch) | |
| tree | 53039ed5c9f0cad1ba2548191656ff358e38277e /bgpd/bgp_updgrp.h | |
| parent | 3061acc235bcc5fc95142fd8aae035f2a0ef7cd8 (diff) | |
bgpd: Convert bgp_policy_type_e to enum
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'bgpd/bgp_updgrp.h')
| -rw-r--r-- | bgpd/bgp_updgrp.h | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/bgpd/bgp_updgrp.h b/bgpd/bgp_updgrp.h index 0e10341bc4..d269f18b6d 100644 --- a/bgpd/bgp_updgrp.h +++ b/bgpd/bgp_updgrp.h @@ -288,7 +288,7 @@ struct updwalk_context {  	struct bgp_path_info *pi;  	uint64_t updgrp_id;  	uint64_t subgrp_id; -	bgp_policy_type_e policy_type; +	enum bgp_policy_type policy_type;  	const char *policy_name;  	int policy_event_start_flag;  	int policy_route_update; @@ -368,7 +368,8 @@ extern void update_subgroup_split_peer(struct peer_af *, struct update_group *);  extern bool update_subgroup_check_merge(struct update_subgroup *, const char *);  extern bool update_subgroup_trigger_merge_check(struct update_subgroup *,  						int force); -extern void update_group_policy_update(struct bgp *bgp, bgp_policy_type_e ptype, +extern void update_group_policy_update(struct bgp *bgp, +				       enum bgp_policy_type ptype,  				       const char *pname, int route_update,  				       int start_event);  extern void update_group_af_walk(struct bgp *bgp, afi_t afi, safi_t safi,  | 
