of12: make OFPQueuePropHeader.property visible to user
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
parent
9b221f1eaa
commit
6cd20b2739
@ -2843,12 +2843,12 @@ class OFPQueueGetConfigRequest(MsgBase):
|
||||
|
||||
class OFPQueuePropHeader(StringifyMixin):
|
||||
def __init__(self, property_, len_=None):
|
||||
self._property = property_
|
||||
self.property = property_
|
||||
self.len = len_
|
||||
|
||||
def serialize(self, buf, offset):
|
||||
msg_pack_into(ofproto_v1_2.OFP_QUEUE_PROP_HEADER_PACK_STR,
|
||||
buf, offset, self._property, self.len)
|
||||
buf, offset, self.property, self.len)
|
||||
|
||||
|
||||
class OFPQueueProp(OFPQueuePropHeader):
|
||||
@ -2906,7 +2906,7 @@ class OFPPacketQueue(StringifyMixin):
|
||||
@OFPQueueProp.register_property(ofproto_v1_2.OFPQT_MIN_RATE,
|
||||
ofproto_v1_2.OFP_QUEUE_PROP_MIN_RATE_SIZE)
|
||||
class OFPQueuePropMinRate(OFPQueueProp):
|
||||
def __init__(self, rate, len_=None):
|
||||
def __init__(self, rate, property_=None, len_=None):
|
||||
super(OFPQueuePropMinRate, self).__init__()
|
||||
self.rate = rate
|
||||
|
||||
@ -2920,7 +2920,7 @@ class OFPQueuePropMinRate(OFPQueueProp):
|
||||
@OFPQueueProp.register_property(ofproto_v1_2.OFPQT_MAX_RATE,
|
||||
ofproto_v1_2.OFP_QUEUE_PROP_MAX_RATE_SIZE)
|
||||
class OFPQueuePropMaxRate(OFPQueueProp):
|
||||
def __init__(self, rate, len_=None):
|
||||
def __init__(self, rate, property_=None, len_=None):
|
||||
super(OFPQueuePropMaxRate, self).__init__()
|
||||
self.rate = rate
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user