Update deps

This commit is contained in:
Frank Denis 2019-10-12 21:22:15 +02:00
parent d627a4bc58
commit d2db6b55a8
187 changed files with 15865 additions and 3125 deletions

View file

@ -189,6 +189,20 @@ func lookup(p *node, key []byte, backtracking bool) *node {
}
}
// Walk iterates routes from a given route.
// handle is called with arguments route and value (if handle returns `false`, the iteration is aborted)
func (n *Net) Walk(r *net.IPNet, handle func(*net.IPNet, interface{}) bool) {
var key []byte
if r != nil {
if ip, _, err := netValidateIPNet(r); err == nil {
key = netIPNetToKey(ip, r.Mask)
}
}
n.trie.Walk(key, func(key []byte, value interface{}) bool {
return handle(netKeyToIPNet(key), value)
})
}
// Deletes all routes.
func (n *Net) Clear() {
n.trie.Clear()