Re: [Ryu-devel] [PATCH] socket-util: Fix an inverted use of LINUX

2014-03-19 Thread YAMAMOTO Takashi
oops, wrong list. sorry! YAMAMOTO Takashi > Fix a regression introduced by commit fce314cd. > ("socket-util: Fix definition of LINUX.") > > Signed-off-by: YAMAMOTO Takashi > --- > lib/socket-util.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/socket-util.c b/l

Re: [Ryu-devel] [PATCH 01/10] app_manager: add a function to request to load the server application

2014-03-19 Thread YAMAMOTO Takashi
ping! > this is similar to handler.register_service but for client-server > style applications. register_service is not appropriate for such > applications becuase normally the client does not consume > (in the sense of set_ev_cls) asynchronous events from the server. > > note: this automaticall

[Ryu-devel] [PATCH] socket-util: Fix an inverted use of LINUX

2014-03-19 Thread YAMAMOTO Takashi
Fix a regression introduced by commit fce314cd. ("socket-util: Fix definition of LINUX.") Signed-off-by: YAMAMOTO Takashi --- lib/socket-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/socket-util.c b/lib/socket-util.c index 5e1be3f..aa0c719 100644 --- a/lib/socket

[Ryu-devel] Add flows manualy

2014-03-19 Thread Windhya Rankothge
Hi all, I have been working with POX controller for sometimes and I have moved to Ryu very recently.. In POX controller, If I run following code on the controller, it will add flows to the switch manually.. from pox.core import core import pox.openflow.libopenflow_01 as of from pox.lib.addresses

[Ryu-devel] Add flows manualy

2014-03-19 Thread Windhya Rankothge
Hi all, I have been working with POX controller for sometimes and I have moved to Ryu very recently.. In POX controller, If I run following code on the controller, it will add flows to the switch manually.. from pox.core import core import pox.openflow.libopenflow_01 as of from pox.lib.addresses

[Ryu-devel] fonfuction about event and _CONTEXT

2014-03-19 Thread Dong Mo
Dear list, I am learning ryu and I am now very confused about the concept of _CONTEXT and event here. For event, I don't know if I am right about this, please point out if I understand it wrong: Event(request if sync is required) is used to pass information across different applications, like if

[Ryu-devel] [PATCH] ofctl_v1_2:support whole of match fields

2014-03-19 Thread Kiyonari Harigae
Hi, I tried to support for whole of match field with ofctl_v1_2.(same as ofctl_v1_3) Also, changed table_id of get_flow_stats method from fixed 0 to OFPTT_ALL for enable to select arbitrary table_id by client side. Thank you. Signed-off-by: Kiyonari Harigae --- ryu/lib/ofctl_v1_2.py | 93