diff options
author | Brian Russell <brian@graphiant.com> | 2021-02-09 11:36:31 +0000 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2021-02-12 18:57:55 +0000 |
commit | b2aae75c1712b733f16e97bdb69e4b93f32de10c (patch) | |
tree | 569aa2f8742e4d98d05981e758a96e397413391c /src/vat/api_format.c | |
parent | 950d33ef67fdccc24c74cadf679cdeadc1cf6ddc (diff) |
policer: use enum types
Make the policer action enum packed and use it in the policer code.
Use other policer enums where applicable.
Type: improvement
Signed-off-by: Brian Russell <brian@graphiant.com>
Change-Id: I32f9735942af8bca3160b9ef8a75f605d9aba5fa
Diffstat (limited to 'src/vat/api_format.c')
-rw-r--r-- | src/vat/api_format.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/vat/api_format.c b/src/vat/api_format.c index b16f664f52c..a59544a09c5 100644 --- a/src/vat/api_format.c +++ b/src/vat/api_format.c @@ -11652,11 +11652,14 @@ api_policer_add_del (vat_main_t * vam) mp->rate_type = rate_type; mp->round_type = round_type; mp->type = type; - mp->conform_action.type = conform_action.action_type; + mp->conform_action.type = + (vl_api_sse2_qos_action_type_t) conform_action.action_type; mp->conform_action.dscp = conform_action.dscp; - mp->exceed_action.type = exceed_action.action_type; + mp->exceed_action.type = + (vl_api_sse2_qos_action_type_t) exceed_action.action_type; mp->exceed_action.dscp = exceed_action.dscp; - mp->violate_action.type = violate_action.action_type; + mp->violate_action.type = + (vl_api_sse2_qos_action_type_t) violate_action.action_type; mp->violate_action.dscp = violate_action.dscp; mp->color_aware = color_aware; |