* Calls @wa_f with @arg for each entry in the table specified by * @af and @fibnum. * * Table is traversed under read lock unless @wlock is set. */
| 121 | * Table is traversed under read lock unless @wlock is set. |
| 122 | */ |
| 123 | void |
| 124 | rib_walk(uint32_t fibnum, int family, bool wlock, rib_walktree_f_t *wa_f, |
| 125 | void *arg) |
| 126 | { |
| 127 | |
| 128 | rib_walk_ext(fibnum, family, wlock, wa_f, NULL, arg); |
| 129 | } |
| 130 | |
| 131 | /* |
| 132 | * Iterates over all existing fibs in system calling |
no test coverage detected