[Ryu-devel] [PATCH 1/1] rename ryu-client under ryu/tests

2013-06-28 Thread Isaku Yamahata
Since it is debugging tool for developer, don't install it. and move it under ryu/rests directory. Signed-off-by: Isaku Yamahata --- run_tests.sh |2 +- {bin => ryu/tests/bin}/ryu-client |0 setup.py |3 +-- 3 files changed, 2 insertions(

Re: [Ryu-devel] [PATCH] of1.3: fix OFPSetConfig default arguments

2013-06-28 Thread FUJITA Tomonori
On Tue, 11 Jun 2013 00:18:51 +0900 FUJITA Tomonori wrote: > The equivalent fix for of1.2 is the commit 3d90147. > > Signed-off-by: FUJITA Tomonori > --- > ryu/ofproto/ofproto_v1_3_parser.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied. -

Re: [Ryu-devel] [PATCH 00/17] of-wire json representation

2013-06-28 Thread FUJITA Tomonori
On Thu, 27 Jun 2013 16:12:18 +0900 YAMAMOTO Takashi wrote: > this set includes OFPxxx json representation functionality > and some fixes necessary to make new tests pass. > > YAMAMOTO Takashi (17): > fix OFPMeterStats > of13 fix OFP_GROUP_DESC_STATS_PACK_STR > of12 OFPGroupFeaturesStats: t

Re: [Ryu-devel] [PATCH 01/17] fix OFPMeterStats

2013-06-28 Thread FUJITA Tomonori
On Thu, 27 Jun 2013 16:12:19 +0900 YAMAMOTO Takashi wrote: > len -> length > as the latter seems to be expected by OFPMultipartReply.parser_stats_body. > > Signed-off-by: YAMAMOTO Takashi > --- > ryu/ofproto/ofproto_v1_3_parser.py | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-)

Re: [Ryu-devel] topology/switches.py has bug

2013-06-28 Thread FUJITA Tomonori
On Fri, 21 Jun 2013 20:27:34 +0900 Isaku Yamahata wrote: > Yes, thank you for reporting. > The patch is available at http://thread.gmane.org/gmane.network.ryu.devel/2446 > It seems silently ignored. Oops, merged now. --

Re: [Ryu-devel] [PATCH v2] lib/packet: teach packet library to truncate padding octet

2013-06-28 Thread FUJITA Tomonori
On Mon, 10 Jun 2013 11:00:18 +0900 Isaku Yamahata wrote: > The patch teaches packet library to truncate padding octets. > The protocol class that knows its payload length should set its payload > length as payload_length > 0 attributes. > Then, the packet.parser truncates its payload. > If payloa

Re: [Ryu-devel] how to run ryu-client

2013-06-28 Thread FUJITA Tomonori
On Fri, 28 Jun 2013 12:28:54 +0900 Isaku Yamahata wrote: > ryy-client is a debug tool for developers. It only make sense for those > who are familiar with its internals. If you're curious about what those > mean, please read source code. As I said this several times, we should rename ryu-client

Re: [Ryu-devel] [PATCH v5 1/2] add ICMP sub encoder/decoder class

2013-06-28 Thread FUJITA Tomonori
On Tue, 25 Jun 2013 16:00:24 +0900 "watanabe.fumitaka" wrote: > Add ICMP sub encoder/decoder class for Destination Unreachable Message. > and, add parser to Time Exceeded Message class. > > > Signed-off-by: WATANABE Fumitaka > --- > ryu/lib/packet/icmp.py | 113 > +++

Re: [Ryu-devel] [PATCH 1/2] packet/lib: stop tlv parsing when finding LLDP_TLV_END

2013-06-28 Thread FUJITA Tomonori
On Mon, 24 Jun 2013 11:06:21 +0900 Isaku Yamahata wrote: > There may be padding at the end of payload. > So the assumption that there is no payload after LLDP_TLV_END > is not correct. > > Reported-by: Q Lady > Signed-off-by: Isaku Yamahata > --- > ryu/lib/packet/lldp.py |5 +++-- > 1 fil