Signed-off-by: FUJITA Tomonori <[email protected]>
---
 ryu/ofproto/ofproto_v1_2_parser.py | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/ryu/ofproto/ofproto_v1_2_parser.py 
b/ryu/ofproto/ofproto_v1_2_parser.py
index db36ce2..0215903 100644
--- a/ryu/ofproto/ofproto_v1_2_parser.py
+++ b/ryu/ofproto/ofproto_v1_2_parser.py
@@ -1983,8 +1983,10 @@ class OFPFlowStatsRequest(OFPStatsRequest):
                                                  cookie, cookie_mask, match)
             datapath.send_msg(req)
     """
-    def __init__(self, datapath, table_id, out_port, out_group,
-                 cookie, cookie_mask, match, flags=0):
+    def __init__(self, datapath, table_id=ofproto_v1_2.OFPTT_ALL,
+                 out_port=ofproto_v1_2.OFPP_ANY,
+                 out_group=ofproto_v1_2.OFPG_ANY,
+                 cookie=0, cookie_mask=0, match=None, flags=0):
         super(OFPFlowStatsRequest, self).__init__(datapath,
                                                   ofproto_v1_2.OFPST_FLOW,
                                                   flags)
@@ -1993,6 +1995,8 @@ class OFPFlowStatsRequest(OFPStatsRequest):
         self.out_group = out_group
         self.cookie = cookie
         self.cookie_mask = cookie_mask
+        if match is None:
+            match = OFPMatch()
         self.match = match
 
     def _serialize_stats_body(self):
-- 
1.7.12.4 (Apple Git-37)


------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60133471&iu=/4140/ostg.clktrk
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to