mirror of
https://github.com/faucetsdn/ryu.git
synced 2026-05-05 12:26:11 +02:00
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:
parent
95963e3ced
commit
77414c1cc2
@ -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):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user