[Ryu-devel] [PATCH] ofctl_rest: support OFPFlowStats filtered by fields

2014-08-19 Thread Yusuke Iwase
this patch enables ofctl_rest to get OFPFlowStats messages filtered by the OFPFlowStatsRequest fields in OpenFlow specification. usage) URI:/stats/flow/ method: POST the message body is as follows: table_id ID of table. out_port Require matching entries to include this as

Re: [Ryu-devel] How can I load my own module when running gui_topology.py?

2014-08-19 Thread FUJITA Tomonori
On Fri, 15 Aug 2014 20:40:46 +0800 (GMT+08:00) 胡博宏 wrote: > I have already written a simple TE module and it works good. Now, I want to > implement an graphical interface to show real-time bandwidth and so on. I > know that Ryu provides topology visualization named gui_topology.py. So I > want

[Ryu-devel] about adding mpls flow

2014-08-19 Thread Sujit Pandey
Hi I am trying to put mpls flows in the some topology where shortest path is selected. for selecting the path I am using the networkx and output be the list. LOG = logging.getLogger(__name__) class SwitchEventHandler(app_manager.RyuApp): OFP_VERSIONS = [ofproto_v1_3.OFP_VERSION] _CONTEXT

Re: [Ryu-devel] About configurable tester/target ports in ryu/tests/switch/tester.py

2014-08-19 Thread Pyxis LX
Hello, Minoru. On 8/19/14, Minoru TAKAHASHI wrote: > Hi, Pyxis > > (2014年08月19日 00:03), Pyxis LX wrote: >> Hi, all. >> >> I'm trying to make a patch for this. >> >> But I'm not sure which behavior is more preferable? >> >> 1. These configuration items will override the output port in the test >>

[Ryu-devel] [PATCH] bgp: reduce duplicate codes with helper_function.

2014-08-19 Thread Hiroshi Yokoi
reduced duplicate codes and put together to a static function. Signed-off-by: Hiroshi Yokoi --- ryu/services/protocols/bgp/bgpspeaker.py | 50 +--- 1 file changed, 27 insertions(+), 23 deletions(-) diff --git a/ryu/services/protocols/bgp/bgpspeaker.py b/ryu/services