diff options
-rw-r--r-- | ryu/ofproto/ofproto_v1_2_parser.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ryu/ofproto/ofproto_v1_2_parser.py b/ryu/ofproto/ofproto_v1_2_parser.py index 5c031809..bb2a3554 100644 --- a/ryu/ofproto/ofproto_v1_2_parser.py +++ b/ryu/ofproto/ofproto_v1_2_parser.py @@ -297,10 +297,11 @@ class OFPPort(ofproto_parser.namedtuple('OFPPort', ( _TYPE = { 'ascii': [ 'hw_addr', - - # XXX OF spec is unclear about the encoding of name. - # OVS seems to use UTF-8. - # 'name', + ], + 'utf-8': [ + # OF spec is unclear about the encoding of name. + # we assumes UTF-8, which is used by OVS. + 'name', ] } |