Because NXActionHeader is extention to OFPActionVendor.
Signed-off-by: Isaku Yamahata <[email protected]>
---
ryu/ofproto/ofproto_v1_0_parser.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/ryu/ofproto/ofproto_v1_0_parser.py
b/ryu/ofproto/ofproto_v1_0_parser.py
index aa0eaea..96781ff 100644
--- a/ryu/ofproto/ofproto_v1_0_parser.py
+++ b/ryu/ofproto/ofproto_v1_0_parser.py
@@ -472,7 +472,7 @@ class OFPActionVendor(OFPAction):
@OFPActionVendor.register_action_vendor(ofproto_v1_0.NX_VENDOR_ID)
-class NXActionHeader(object):
+class NXActionHeader(OFPActionVendor):
_NX_ACTION_SUBTYPES = {}
@staticmethod
@@ -484,9 +484,8 @@ class NXActionHeader(object):
return _register_nx_action_subtype
def __init__(self, subtype_, len_):
- self.type = ofproto_v1_0.OFPAT_VENDOR
+ super(NXActionHeader, self).__init__(ofproto_v1_0.NX_VENDOR_ID)
self.len = len_
- self.vendor = ofproto_v1_0.NX_VENDOR_ID
self.subtype = subtype_
def serialize(self, buf, offset):
--
1.7.10.4
------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and
their applications. This 200-page book is written by three acclaimed
leaders in the field. The early access version is available now.
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel