@@ -5049,7 +5049,7 @@ module GroupFeatures = struct
5049
5049
5050
5050
end
5051
5051
5052
- module ActionType = struct
5052
+ module ActionTypeMap = struct
5053
5053
5054
5054
type t = actionTypeMap
5055
5055
@@ -5128,10 +5128,10 @@ module GroupFeatures = struct
5128
5128
gf.max_groups_select
5129
5129
gf.max_groups_indirect
5130
5130
gf.max_groups_ff
5131
- (ActionType . to_string gf.actions_all)
5132
- (ActionType . to_string gf.actions_select)
5133
- (ActionType . to_string gf.actions_indirect)
5134
- (ActionType . to_string gf.actions_ff)
5131
+ (ActionTypeMap . to_string gf.actions_all)
5132
+ (ActionTypeMap . to_string gf.actions_select)
5133
+ (ActionTypeMap . to_string gf.actions_indirect)
5134
+ (ActionTypeMap . to_string gf.actions_ff)
5135
5135
5136
5136
let marshal (buf : Cstruct.t ) (gf : groupFeatures ) : int =
5137
5137
set_ofp_group_features_typ buf (GroupType. marshal gf.typ);
@@ -5140,10 +5140,10 @@ module GroupFeatures = struct
5140
5140
set_ofp_group_features_max_groups_select buf gf.max_groups_select;
5141
5141
set_ofp_group_features_max_groups_indirect buf gf.max_groups_indirect;
5142
5142
set_ofp_group_features_max_groups_fastfailover buf gf.max_groups_ff;
5143
- set_ofp_group_features_actions_all buf (ActionType . marshal gf.actions_all);
5144
- set_ofp_group_features_actions_select buf (ActionType . marshal gf.actions_select);
5145
- set_ofp_group_features_actions_indirect buf (ActionType . marshal gf.actions_indirect);
5146
- set_ofp_group_features_actions_fastfailover buf (ActionType . marshal gf.actions_ff);
5143
+ set_ofp_group_features_actions_all buf (ActionTypeMap . marshal gf.actions_all);
5144
+ set_ofp_group_features_actions_select buf (ActionTypeMap . marshal gf.actions_select);
5145
+ set_ofp_group_features_actions_indirect buf (ActionTypeMap . marshal gf.actions_indirect);
5146
+ set_ofp_group_features_actions_fastfailover buf (ActionTypeMap . marshal gf.actions_ff);
5147
5147
sizeof_ofp_group_features
5148
5148
5149
5149
let parse (bits : Cstruct.t ) : groupFeatures =
@@ -5153,10 +5153,10 @@ module GroupFeatures = struct
5153
5153
; max_groups_select = get_ofp_group_features_max_groups_select bits
5154
5154
; max_groups_indirect = get_ofp_group_features_max_groups_indirect bits
5155
5155
; max_groups_ff = get_ofp_group_features_max_groups_fastfailover bits
5156
- ; actions_all = ActionType . parse (get_ofp_group_features_actions_all bits)
5157
- ; actions_select = ActionType . parse (get_ofp_group_features_actions_select bits)
5158
- ; actions_indirect = ActionType . parse (get_ofp_group_features_actions_indirect bits)
5159
- ; actions_ff = ActionType . parse (get_ofp_group_features_actions_fastfailover bits)
5156
+ ; actions_all = ActionTypeMap . parse (get_ofp_group_features_actions_all bits)
5157
+ ; actions_select = ActionTypeMap . parse (get_ofp_group_features_actions_select bits)
5158
+ ; actions_indirect = ActionTypeMap . parse (get_ofp_group_features_actions_indirect bits)
5159
+ ; actions_ff = ActionTypeMap . parse (get_ofp_group_features_actions_fastfailover bits)
5160
5160
}
5161
5161
5162
5162
end
0 commit comments