[Ryu-devel] [PATCH 3/4] sw test tool: Improve readability of MAC mask values

2014-06-08 Thread Yuichi Ito
1099511627775 -> "00:ff:ff:ff:ff:ff" 281474976710400 -> "ff:ff:ff:ff:ff:00" 281474959998975 -> "ff:ff:ff:00:ff:ff" 281470698520575 -> "ff:ff:00:ff:ff:ff" Signed-off-by: Yuichi Ito --- ryu/tests/switch/of13/match/03_ETH_DST_Mask.json | 36 ryu/tests/switc

[Ryu-devel] [PATCH 0/4] sw test tool: Improve readability of test files

2014-06-08 Thread Yuichi Ito
Yuichi Ito (4): sw test tool: Improve readability of tcp options sw test tool: Improve readability of padding data sw test tool: Improve readability of MAC mask values sw test tool: Improve readability of IP mask values ryu/tests/switch/of13/action/00_OUTPUT.json| 12 +-- ryu/te

Re: [Ryu-devel] ryu-IGMP

2014-06-08 Thread Yuichi Ito
Hi, I could not reproduce the problem again. I experimented in the following procedures: 1) run mininet # sudo mn --custom videoNet5-7.py --topo mytopo --switch ovsk --controller remote 2) copy HListener.c for each host # cp HListener.c H1Listener.c # cp HListener.c H2Listener.c

[Ryu-devel] [PATCH] bgp: add bgpspaker module for non Ryu application usage

2014-06-08 Thread FUJITA Tomonori
This enables you to use Ryu BGP feature as 'bgp speaker' python library, that is, without ryu-manager, RPC API, REST API, or other Ryu stuff, you can use Ryu BGP feature in your python application (just import bgpspeaker.py). The sample code and the API reference docs are included too. Signed-off-