From 11659aeb0943875a19e6e812b9b396ba38c90f0c Mon Sep 17 00:00:00 2001 From: Zhang Dongya Date: Sun, 3 Mar 2013 12:04:46 +0000 Subject: add missing 'match' parameter to __init__ function of OFPAggregateStatsRequest Signed-off-by: FUJITA Tomonori --- ryu/ofproto/ofproto_v1_3_parser.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py index f38bc187..a1e73158 100644 --- a/ryu/ofproto/ofproto_v1_3_parser.py +++ b/ryu/ofproto/ofproto_v1_3_parser.py @@ -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() -- cgit v1.2.3