Currently, "port" dict of datapath instance will not be updated even if Ryu gets OFPPortStatus messages. This following patches add EventOFPPortStateChange in order to notify port state changes to users. And, the followings include some improvements of "Ryu Documentation" page. With these patches "Ryu application API" page will be like: http://ryu-iwase.readthedocs.io/en/controller-implement_eventofpportstatechange/ryu_app_api.html
IWASE Yusuke (6): controller: Implement EventOFPPortStateChange doc: Add description for EventOFPPortStateChange network: Fix unresolved reference doc: Move Ryu App API doc into each source code doc: Remove warnings when building doc pages BGP: Make RouteFamily class hashable doc/source/app/ofctl_rest.rst | 41 ++--- doc/source/ryu_app_api.rst | 240 +++------------------------ ryu/controller/controller.py | 69 +++++--- ryu/controller/dpset.py | 65 ++++++++ ryu/controller/event.py | 16 +- ryu/controller/handler.py | 27 +++ ryu/controller/network.py | 54 +++++- ryu/controller/ofp_event.py | 55 ++++++ ryu/controller/ofp_handler.py | 18 ++ ryu/controller/tunnels.py | 45 +++++ ryu/lib/packet/bgp.py | 3 + ryu/lib/packet/tcp.py | 8 +- ryu/ofproto/nx_match.py | 53 +++--- ryu/tests/unit/controller/test_controller.py | 2 +- 14 files changed, 409 insertions(+), 287 deletions(-) -- 2.7.4 ------------------------------------------------------------------------------ Mobile security can be enabling, not merely restricting. Employees who bring their own devices (BYOD) to work are irked by the imposition of MDM restrictions. Mobile Device Manager Plus allows you to control only the apps on BYO-devices by containerizing them, leaving personal data untouched! https://ad.doubleclick.net/ddm/clk/304595813;131938128;j _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
