diff --git a/ryu/services/protocols/bgp/info_base/base.py b/ryu/services/protocols/bgp/info_base/base.py index b332b0f3..3546c92b 100644 --- a/ryu/services/protocols/bgp/info_base/base.py +++ b/ryu/services/protocols/bgp/info_base/base.py @@ -80,6 +80,9 @@ class Table(object): """ raise NotImplementedError() + def values(self): + return self._destinations.values() + def itervalues(self): return iter(self._destinations.values())