[Ryu-devel] [PATCH v2] Enable to run a scenario test with a specific python version

2016-11-01 Thread fumihiko kakuma
Signed-off-by: Fumihiko Kakuma --- tox.ini | 13 + 1 file changed, 13 insertions(+) diff --git a/tox.ini b/tox.ini index ae9fd33..85a3a06 100644 --- a/tox.ini +++ b/tox.ini @@ -10,9 +10,22 @@ usedevelop = True passenv= NOSE_VERBOSE commands = coverage run --source=ryu ryu/tests/

Re: [Ryu-devel] Controller-to-controller communication

2016-11-01 Thread Iwase Yusuke
Hi, Ryu does not define the standard way to communicate between controllers, but you have some options to achieve this. Just an idea, the following implements REST API for sending the packet info by using the json representation of packet library. $ git diff diff --git a/ryu/app/simple_switch_re