updateRouteTrees do update to the route trees
()
| 515 | |
| 516 | // updateRouteTrees do update to the route trees |
| 517 | func (engine *Engine) updateRouteTrees() { |
| 518 | for _, tree := range engine.trees { |
| 519 | updateRouteTree(tree.root) |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | // parseIP parse a string representation of an IP and returns a net.IP with the |
| 524 | // minimum byte representation or nil if input is invalid. |