diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2017-10-06 20:25:58 +0200 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2017-10-10 14:05:46 +0200 |
commit | 451fda4f9a2fadc24328e640077780a00ffcdac2 (patch) | |
tree | e5cb1b11502a6c525698d188ccc94adfea4515a1 /ripngd/ripng_interface.c | |
parent | ospf6d: Add missing vrf lookup (diff) | |
download | frr-451fda4f9a2fadc24328e640077780a00ffcdac2.tar.xz frr-451fda4f9a2fadc24328e640077780a00ffcdac2.zip |
*: use the FOR_ALL_INTERFACES abstraction from babeld
This improves code readability and also future-proofs our codebase
against new changes in the data structure used to store interfaces.
The FOR_ALL_INTERFACES_ADDRESSES macro was also moved to lib/ but
for now only babeld is using it.
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'ripngd/ripng_interface.c')
-rw-r--r-- | ripngd/ripng_interface.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ripngd/ripng_interface.c b/ripngd/ripng_interface.c index 7203c906e..d450d5a7f 100644 --- a/ripngd/ripng_interface.c +++ b/ripngd/ripng_interface.c @@ -310,7 +310,7 @@ void ripng_interface_clean(void) struct interface *ifp; struct ripng_interface *ri; - RB_FOREACH (ifp, if_name_head, &vrf->ifaces_by_name) { + FOR_ALL_INTERFACES (vrf, ifp) { ri = ifp->info; ri->enable_network = 0; @@ -330,7 +330,7 @@ void ripng_interface_reset(void) struct interface *ifp; struct ripng_interface *ri; - RB_FOREACH (ifp, if_name_head, &vrf->ifaces_by_name) { + FOR_ALL_INTERFACES (vrf, ifp) { ri = ifp->info; ri->enable_network = 0; @@ -763,7 +763,7 @@ static void ripng_enable_apply_all(void) struct vrf *vrf = vrf_lookup_by_id(VRF_DEFAULT); struct interface *ifp; - RB_FOREACH (ifp, if_name_head, &vrf->ifaces_by_name) + FOR_ALL_INTERFACES (vrf, ifp) ripng_enable_apply(ifp); } @@ -824,7 +824,7 @@ static void ripng_passive_interface_apply_all(void) struct vrf *vrf = vrf_lookup_by_id(VRF_DEFAULT); struct interface *ifp; - RB_FOREACH (ifp, if_name_head, &vrf->ifaces_by_name) + FOR_ALL_INTERFACES (vrf, ifp) ripng_passive_interface_apply(ifp); } @@ -1074,7 +1074,7 @@ static int interface_config_write(struct vty *vty) struct ripng_interface *ri; int write = 0; - RB_FOREACH (ifp, if_name_head, &vrf->ifaces_by_name) { + FOR_ALL_INTERFACES (vrf, ifp) { ri = ifp->info; /* Do not display the interface if there is no |