diff options
-rw-r--r-- | ryu/ofproto/ofproto_v1_3_parser.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py index 9a73088b..743eb85f 100644 --- a/ryu/ofproto/ofproto_v1_3_parser.py +++ b/ryu/ofproto/ofproto_v1_3_parser.py @@ -4597,6 +4597,15 @@ class OFPMeterFeaturesStatsReply(OFPMultipartReply): class OFPTableFeaturesStats(StringifyMixin): + + _TYPE = { + 'utf-8': [ + # OF spec is unclear about the encoding of name. + # we assumes UTF-8. + 'name', + ] + } + def __init__(self, table_id=None, name=None, metadata_match=None, metadata_write=None, config=None, max_entries=None, properties=None, length=None): |