mirror of
https://github.com/faucetsdn/ryu.git
synced 2026-05-11 07:16:10 +02:00
add missing 'match' parameter to __init__ function of OFPAggregateStatsRequest
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
parent
cef3ca93a9
commit
11659aeb09
@ -2158,13 +2158,14 @@ class OFPAggregateStats(collections.namedtuple('OFPAggregateStats', (
|
||||
@_set_msg_type(ofproto_v1_3.OFPT_MULTIPART_REQUEST)
|
||||
class OFPAggregateStatsRequest(OFPFlowStatsRequestBase):
|
||||
def __init__(self, datapath, flags, table_id, out_port, out_group,
|
||||
cookie, cookie_mask):
|
||||
cookie, cookie_mask, match):
|
||||
super(OFPAggregateStatsRequest, self).__init__(datapath,
|
||||
table_id,
|
||||
out_port,
|
||||
out_group,
|
||||
cookie,
|
||||
cookie_mask)
|
||||
cookie_mask,
|
||||
match)
|
||||
|
||||
|
||||
@OFPMultipartReply.register_stats_type()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user