diff options
author | Zhang Dongya <fortitude.zhang@gmail.com> | 2013-03-03 12:04:46 +0000 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-03-03 13:59:13 +0900 |
commit | 11659aeb0943875a19e6e812b9b396ba38c90f0c (patch) | |
tree | 6a3ad85b642aba12af367197b5563868620a3f59 | |
parent | cef3ca93a907cdd164bf0e01544fd6e3ad7a91f1 (diff) |
add missing 'match' parameter to __init__ function of OFPAggregateStatsRequest
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/ofproto/ofproto_v1_3_parser.py | 5 |
1 files 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() |