diff options
Diffstat (limited to 'ryu/ofproto/ofproto_v1_4.py')
-rw-r--r-- | ryu/ofproto/ofproto_v1_4.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ryu/ofproto/ofproto_v1_4.py b/ryu/ofproto/ofproto_v1_4.py index 02b07b1b..d1c48225 100644 --- a/ryu/ofproto/ofproto_v1_4.py +++ b/ryu/ofproto/ofproto_v1_4.py @@ -19,7 +19,7 @@ OpenFlow 1.4 definitions. """ from ryu.lib import type_desc -from ryu.ofproto import nx_match +from ryu.ofproto import nicira_ext from ryu.ofproto import ofproto_utils from ryu.ofproto import oxm_fields @@ -396,7 +396,7 @@ oxm_types = [ # EXT-233 Output match Extension # NOTE(yamamoto): The spec says uint64_t but I assume it's an error. oxm_fields.ONFExperimenter('actset_output', 43, type_desc.Int4), -] + nx_match.oxm_types +] + nicira_ext.oxm_types oxm_fields.generate(__name__) |