[Ryu-devel] [PATCH 0/2] ofctl_rest: support OFPExperimenter message and correct a little

2014-01-05 Thread Yuichi Ito
this set implements the upgrade of ofctl_rest and ofctl_v1_x. Yuichi Ito (2): ofctl_rest: fix delete_flow_entry ofctl_rest: support OFPExperimenter message ryu/app/ofctl_rest.py | 32 +++- ryu/lib/ofctl_v1_2.py | 17 + ryu/lib/ofctl_v1_3.py |

[Ryu-devel] [PATCH 2/2] ofctl_rest: support OFPExperimenter message

2014-01-05 Thread Yuichi Ito
this patch makes ofctl_rest enable use of OFPExperimenter message. usage) URI:/stats/experimenter/{dpid} method: POST the message body is as follows: experimenter Experimenter ID. (default: 0) exp_type Experimenter defined type. (default:0) data_type Data encoding type.

[Ryu-devel] [PATCH 1/2] ofctl_rest: fix delete_flow_entry

2014-01-05 Thread Yuichi Ito
Signed-off-by: Yuichi Ito --- ryu/app/ofctl_rest.py |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/app/ofctl_rest.py b/ryu/app/ofctl_rest.py index ce6a78b..b9656b1 100644 --- a/ryu/app/ofctl_rest.py +++ b/ryu/app/ofctl_rest.py @@ -230,7 +230,7 @@ class StatsController(

Re: [Ryu-devel] BPDU handling

2014-01-05 Thread watanabe.fumitaka
Hi, it should be operated with version and type, as your indication. I will send patch soon. thanks. On Sun, 29 Dec 2013 19:22:02 -0500 Nicholas Bastin wrote: > There seems to be a fundamental flaw in the assumption of how BPDUs can be > handled in packet/bpdu.py (or I'm completely misunders

[Ryu-devel] [PATCH] firewall: correct acquisition result of DENY rule

2014-01-05 Thread watanabe.fumitaka
Owing to the following patches, the acquisition result of the DENY rule became inaccurate. http://www.mail-archive.com/[email protected]/msg05255.html When blocked packet logging is enabled, GET rest command shows DENY rules as 'ALLOW'. This patch improves it. Signed-off-by: W

[Ryu-devel] Setting highest priority to rule matching LLDP packets

2014-01-05 Thread Srini Seetharaman
Attached is a patch to set the highest priority to rule for topology discovery. This avoids any interference from other overlapping port-based rules. 0001-Setting-highest-rule-priority-to-LLDP-packets-in-top.patch Description: Binary data --

[Ryu-devel] [PATCH] Fix Windows setup dependency bug

2014-01-05 Thread Wei-Li Tang
The hook raises an AttributeError exception on Windows because of recent changes in the pbr project. This fix solves the issue. This is adapted from https://review.openstack.org/#/c/42170/ Since ryu didn't depend on pyudev, I think it no longer needs a removal here. Signed-off-by: Wei-Li Tang -

Re: [Ryu-devel] Cannot install Ryu 3.4 on WinPython 2.7.4

2014-01-05 Thread Alex Tang
Hello, It's due to recent changes in the pbr project, and the hooks raise an exception only on Windows. I shall submit a patch later. See https://review.openstack.org/#/c/42170/ By the way, to solve the module dependencies on Windows, I installed greenlet, lxml==2.3 by easy_install, downloaded py