Re: [Ryu-devel] Fwd: Re: : Re: Addition of layer 2 QoS Module - RYU controller

2013-09-27 Thread SDN
Hi Fujita , I have fixed the code and it does not show any pep8 warnings now. Please find the updated patch in the attachment. Thanks & Regards, B.SUJAI Veryx Technologies Pvt Ltd. Chennai - INDIA - Original Message - From: FUJITA Tomonori To: [email protected] Cc: ryu-devel@list

[Ryu-devel] [PATCH 2/3] packet lib: dhcp: add unittest

2013-09-27 Thread Yuichi Ito
add the tests for __init__(), parser() and serialize() in response to using text addresses. correct an argument for option.__init__() from string to byte. Signed-off-by: itoyuichi --- ryu/tests/unit/packet/test_dhcp.py | 113 1 file changed, 102 insertions(

[Ryu-devel] [PATCH 3/3] packet lib: dhcp: remove unnecessary import

2013-09-27 Thread Yuichi Ito
Signed-off-by: itoyuichi --- ryu/lib/packet/dhcp.py |1 - ryu/tests/unit/packet/test_dhcp.py |6 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/ryu/lib/packet/dhcp.py b/ryu/lib/packet/dhcp.py index 7bc03e0..3b2b97b 100644 --- a/ryu/lib/packet/dhcp.py +++

[Ryu-devel] [PATCH 1/3] packet lib: dhcp: use text addresses

2013-09-27 Thread Yuichi Ito
Signed-off-by: itoyuichi --- ryu/lib/packet/dhcp.py | 35 +++ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/ryu/lib/packet/dhcp.py b/ryu/lib/packet/dhcp.py index 471ea04..7bc03e0 100644 --- a/ryu/lib/packet/dhcp.py +++ b/ryu/lib/packet/dhcp.py @

[Ryu-devel] [PATCH 0/3] packet lib: dhcp: use text addresses and so on

2013-09-27 Thread Yuichi Ito
itoyuichi (3): packet lib: dhcp: use text addresses packet lib: dhcp: add unittest packet lib: dhcp: remove unnecessary import ryu/lib/packet/dhcp.py | 36 +++ ryu/tests/unit/packet/test_dhcp.py | 119 +++- 2 files changed, 126 insertio