[Ryu-devel] [PATCH 1/5] of13: implement EXT-256 (PBB UCA match field)

2013-11-19 Thread YAMAMOTO Takashi
note: while we usually try to represent on-wire structure as it is, this code hides on-wire details (the use of experimenter oxm for this extension), preferring OF1.4 compatibility. Signed-off-by: YAMAMOTO Takashi --- ryu/ofproto/ofproto_v1_3.py | 1 + ryu/ofproto/oxm_fields.py | 97 +

[Ryu-devel] [PATCH 2/5] packet_data_generator: update of_protocol upstream

2013-11-19 Thread YAMAMOTO Takashi
for EXT-256 Signed-off-by: YAMAMOTO Takashi --- ryu/tests/packet_data_generator/rebar.config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ryu/tests/packet_data_generator/rebar.config b/ryu/tests/packet_data_generator/rebar.config index 6387666..fc346f0 100644 --- a/ryu/

[Ryu-devel] [PATCH 3/5] packet_data_generator: add a case for EXT-256 (PBB UCA match field)

2013-11-19 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/tests/packet_data_generator/src/x4.erl | 44 +- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/ryu/tests/packet_data_generator/src/x4.erl b/ryu/tests/packet_data_generator/src/x4.erl index 7facfb1..ba61c9c 100644

[Ryu-devel] [PATCH 4/5] packet_data: regen

2013-11-19 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- .../packet_data/of13/4-12-ofp_flow_stats_reply.packet | Bin 320 -> 520 bytes ryu/tests/packet_data/of13/4-2-ofp_flow_mod.packet | Bin 248 -> 264 bytes ryu/tests/packet_data/of13/4-59-ofp_packet_in.packet| Bin 354 -> 362 bytes ryu/tests/packet_data

[Ryu-devel] [PATCH 5/5] test_parser: update expected json representations for EXT-256

2013-11-19 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- .../of13/4-12-ofp_flow_stats_reply.packet.json | 157 - .../ofproto/json/of13/4-2-ofp_flow_mod.packet.json | 13 +- .../json/of13/4-59-ofp_packet_in.packet.json | 9 +- .../json/of13/4-60-ofp_flow_mod.packet.json| 9 +-

[Ryu-devel] [PATCH] skip malformed OF messages and continue instead of stopping

2013-11-19 Thread FUJITA Tomonori
Needs to catch more kinds of exceptions (e.g. TypeError). Signed-off-by: FUJITA Tomonori --- ryu/controller/controller.py | 17 + ryu/ofproto/ofproto_parser.py | 4 ++-- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/ryu/controller/controller.py b/ryu/control

[Ryu-devel] [PATCH] of13: fix wrong comments

2013-11-19 Thread FUJITA Tomonori
Signed-off-by: FUJITA Tomonori --- ryu/ofproto/ofproto_v1_3.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ryu/ofproto/ofproto_v1_3.py b/ryu/ofproto/ofproto_v1_3.py index dcdf48e..602be8a 100644 --- a/ryu/ofproto/ofproto_v1_3.py +++ b/ryu/ofproto/ofproto_v1_3.py @@

[Ryu-devel] [PATCH] lacplib: reduce unnecessary constant

2013-11-19 Thread Yuichi Ito
and correct the inaccurate dispatchers. Signed-off-by: Yuichi Ito --- ryu/app/simple_switch_lacp.py |5 +++-- ryu/lib/lacplib.py|3 --- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/ryu/app/simple_switch_lacp.py b/ryu/app/simple_switch_lacp.py index 2b4edb0..

Re: [Ryu-devel] tester.py cannot handle OpenFlow 1.3

2013-11-19 Thread FUJITA Tomonori
Hi, On Mon, 18 Nov 2013 10:26:37 +0800 arne_goetje wrote: > Currently, the integrated tests in ruy/tests/integrated/ cannot work with > OpenFlow 1.3. > > Any plans to add OF 1.3 functionality? We plan to add something like that for OF1.3 by the end of this year. -

[Ryu-devel] Info about Topology module

2013-11-19 Thread Julián Merino Fresno
Hi, I need some help related with the topology module of Ryu. My goal is to get the network topology (that i have previously simulated in mininet).The problem is that I don’t really know how to use the resources of the topology module (dumper.py, event.py and switches.py), I have been looking

Re: [Ryu-devel] [PATCH 1/3] test_parser: enable serializer tests for OFPT_EXPERIMENTER

2013-11-19 Thread FUJITA Tomonori
On Mon, 18 Nov 2013 15:38:17 +0900 YAMAMOTO Takashi wrote: > Signed-off-by: YAMAMOTO Takashi > --- > ryu/tests/unit/ofproto/test_parser.py | 2 -- > 1 file changed, 2 deletions(-) Applied all, thanks. -- Shape the Mob

Re: [Ryu-devel] [PATCH 1/6] ryu.app.rest: comments

2013-11-19 Thread FUJITA Tomonori
On Mon, 18 Nov 2013 17:18:13 +0900 YAMAMOTO Takashi wrote: > Signed-off-by: YAMAMOTO Takashi > --- > ryu/app/rest.py | 8 > 1 file changed, 8 insertions(+) Applied all. -- Shape the Mobile Experience: Free Su

Re: [Ryu-devel] [PATCH 1/2] of13: OFPOxmId: update comment

2013-11-19 Thread FUJITA Tomonori
On Tue, 19 Nov 2013 16:36:28 +0900 YAMAMOTO Takashi wrote: > Signed-off-by: YAMAMOTO Takashi > --- > ryu/ofproto/ofproto_v1_3_parser.py | 3 +++ > 1 file changed, 3 insertions(+) Applied both. -- Shape the Mobile Exp

Re: [Ryu-devel] [PATCH] doc: update tls example

2013-11-19 Thread FUJITA Tomonori
On Mon, 18 Nov 2013 16:06:10 +0900 YAMAMOTO Takashi wrote: > after commit 73ae9dd1 ("solve application dependency via @set_ev_cls"), > ryu-manager without explicit apps merely exits. > > Signed-off-by: YAMAMOTO Takashi > --- > doc/source/tls.rst | 24 ++-- > 1 file changed,