Re: [Ryu-devel] Unable to display BGPSpeaker routes/details using show_vrf, show_rib, show_neighbor

2018-01-22 Thread Iwase Yusuke
Hi Hadem, Thanks for your confirmation! I will post this patch. Thanks, Iwase On 2018年01月22日 15:46, Pynbiang Hadem wrote: Hi Iwase, Thanks. This could be really helpful. I will let you know if i have any further requirements(need help) while implementing and using this. Thanks Hadem On M

[Ryu-devel] [PATCH 0/3] BGPSpeaker: Enable to notify adj-RIB-in changed

2018-01-22 Thread IWASE Yusuke
The following patches introduce a new argument to BGPSpeaker and a new event to "bgp/bgpspeaker.py" in order to notify adj-RIB-in changed to watchers. Also include improvements for the BGPSpeaker API documentation. IWASE Yusuke (3): BGPSpeaker: Enable to notify adj-RIB-in changed BGPSpeaker: M

[Ryu-devel] [PATCH 3/3] bgp/application: Add note for BGPSpeaker API reference

2018-01-22 Thread IWASE Yusuke
Signed-off-by: IWASE Yusuke --- ryu/services/protocols/bgp/application.py | 5 + 1 file changed, 5 insertions(+) diff --git a/ryu/services/protocols/bgp/application.py b/ryu/services/protocols/bgp/application.py index 31cfb5f..b4ae49c 100644 --- a/ryu/services/protocols/bgp/application.py +

[Ryu-devel] [PATCH 1/3] BGPSpeaker: Enable to notify adj-RIB-in changed

2018-01-22 Thread IWASE Yusuke
This patch introduces a new argument "adj_rib_in_change_handler" into BGPSpeaker and enables to notify adj-RIB-in changed to watchers. Also this patch enables to "bgp.application.RyuBGPSpeaker" to notify a new event EventAdjRibInChanged to other Ryu applications. Signed-off-by: IWASE Yusuke ---

[Ryu-devel] [PATCH 2/3] BGPSpeaker: Move docstring from __init__ to class

2018-01-22 Thread IWASE Yusuke
By the default, Sphinx does not include __init__() method for the "autoclass" directive, and currently the description for the arguments of BGPSpeaker is not generated. This patch moves the docstring of __init__() to the class's docstring and enables to generate the docs for the arguments of __ini