summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ryu/ofproto/ofproto_v1_3_parser.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py
index 71585709..9a73088b 100644
--- a/ryu/ofproto/ofproto_v1_3_parser.py
+++ b/ryu/ofproto/ofproto_v1_3_parser.py
@@ -2116,10 +2116,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',
]
}