of1.0: NXActionHeader should be subclass of OFPActionVendor

Because NXActionHeader is extention to OFPActionVendor.

Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
Isaku Yamahata 2013-05-09 16:20:31 +09:00 committed by FUJITA Tomonori
parent 95963e3ced
commit 77414c1cc2

View File

@ -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):