Re: [Ryu-devel] how to connect to another tcp server in ryu application?

2016-03-03 Thread Shuoling Deng
Ryu App is driven by the event. So, it depend on what you want to do when receiving event. For example. you can connect TCP server when receiving PACKET-IN. @set_ev_cls(ofp_event.EventOFPPacketIn, MAIN_DISPATCHER) def _packet_in_handler(self, ev): # establish TCP connection with the TCP server.

[Ryu-devel] ARP_Responder

2016-03-03 Thread Talal Alharbi
Hi All, I've found a couple of versions of ARP_responder in Ryu, but none of them work properly as in POX. Is there any updated version. Cheers, Talal -- Site24x7 APM Insigh

[Ryu-devel] [PATCH 2/2] protocols/ovsdb: Allow setting probe interval

2016-03-03 Thread Jason Kölker
Signed-off-by: Jason Kölker --- ryu/services/protocols/ovsdb/client.py | 6 +- ryu/services/protocols/ovsdb/manager.py | 5 - 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ryu/services/protocols/ovsdb/client.py b/ryu/services/protocols/ovsdb/client.py index 525b432..ef5

[Ryu-devel] [PATCH 1/2] protocols/ovsdb: Fix shadow loop variables [F402]

2016-03-03 Thread Jason Kölker
Signed-off-by: Jason Kölker --- ryu/services/protocols/ovsdb/client.py | 6 +++--- ryu/services/protocols/ovsdb/manager.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ryu/services/protocols/ovsdb/client.py b/ryu/services/protocols/ovsdb/client.py index 387d91b..525b

[Ryu-devel] Ryu 4.0 released

2016-03-03 Thread FUJITA Tomonori
Hi, Here's a new release, with the updated major version number, as I mentioned before. Python 2.6 isn't supported anymore. Some python libraries that Ryu depends on dropped support 2.6 so it's too tricky to support 2.6. As usual, there are some new features, cleanups, and fixes. Victor added OF