of14: set default attributes for group-related classes

Signed-off-by: Yuichi Ito <ito.yuichi0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
Yuichi Ito 2014-04-16 10:38:09 +09:00 committed by FUJITA Tomonori
parent f516474c10
commit f4d3c5616d

View File

@ -4958,7 +4958,7 @@ class OFPActionGroup(OFPAction):
group_id Group identifier
================ ======================================================
"""
def __init__(self, group_id, type_=None, len_=None):
def __init__(self, group_id=0, type_=None, len_=None):
super(OFPActionGroup, self).__init__()
self.group_id = group_id
@ -5429,7 +5429,8 @@ class OFPGroupMod(MsgBase):
ofp.OFPGT_SELECT, group_id, buckets)
datapath.send_msg(req)
"""
def __init__(self, datapath, command, type_, group_id, buckets):
def __init__(self, datapath, command=ofproto.OFPGC_ADD,
type_=ofproto.OFPGT_ALL, group_id=0, buckets=[]):
super(OFPGroupMod, self).__init__(datapath)
self.command = command
self.type = type_
@ -5562,7 +5563,8 @@ class OFPPortMod(MsgBase):
class OFPBucket(StringifyMixin):
def __init__(self, weight, watch_port, watch_group, actions, len_=None):
def __init__(self, weight=0, watch_port=ofproto.OFPP_ANY,
watch_group=ofproto.OFPG_ANY, actions=None, len_=None):
super(OFPBucket, self).__init__()
self.weight = weight
self.watch_port = watch_port