diff options
author | Zhaoming Luo <zhmingluo@163.com> | 2024-12-07 12:52:45 +0800 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-12-07 10:10:16 +0100 |
commit | 382b7d67aee8bd671a46a33d47eca9f99464cad4 (patch) | |
tree | 457739a368f6e5e5f82f2cb933343688495d95d4 | |
parent | b21b03ca624b89caeedfe58430cea4b40317d39f (diff) | |
download | hurd-382b7d67aee8bd671a46a33d47eca9f99464cad4.tar.gz hurd-382b7d67aee8bd671a46a33d47eca9f99464cad4.tar.bz2 hurd-382b7d67aee8bd671a46a33d47eca9f99464cad4.zip |
Code refactor
Message-ID: <20241207045245.1457-1-zhmingluo@163.com>
-rw-r--r-- | lwip/options.c | 2 | ||||
-rw-r--r-- | lwip/pfinet-ops.c | 2 | ||||
-rw-r--r-- | lwip/port/netif/hurdethif.c | 2 | ||||
-rw-r--r-- | lwip/port/netif/hurdtunif.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lwip/options.c b/lwip/options.c index 2cfad44d..a22be26c 100644 --- a/lwip/options.c +++ b/lwip/options.c @@ -310,7 +310,7 @@ trivfs_append_args (struct trivfs_control * fsys, char **argz, i.s_addr = (addr); \ ADD_OPT ("--%s=%s", name, inet_ntoa (i)); } while (0) - for (netif = netif_list; netif != 0; netif = netif->next) + NETIF_FOREACH(netif) { /* Skip the loopback interface */ if (netif_get_state (netif)->type == ARPHRD_LOOPBACK) diff --git a/lwip/pfinet-ops.c b/lwip/pfinet-ops.c index 5be85879..d5afb94f 100644 --- a/lwip/pfinet-ops.c +++ b/lwip/pfinet-ops.c @@ -50,7 +50,7 @@ dev_ifconf (struct ifconf *ifc) ifr = ifc->ifc_req; len = ifc->ifc_len; saddr = (struct sockaddr_in *) &ifr->ifr_addr; - for (netif = netif_list; netif != 0; netif = netif->next) + NETIF_FOREACH(netif) { if (ifc->ifc_req != 0) { diff --git a/lwip/port/netif/hurdethif.c b/lwip/port/netif/hurdethif.c index b55c7edb..f2103566 100644 --- a/lwip/port/netif/hurdethif.c +++ b/lwip/port/netif/hurdethif.c @@ -402,7 +402,7 @@ hurdethif_demuxer (mach_msg_header_t * inp, mach_msg_header_t * outp) else local_port = inp->msgh_local_port; - for (netif = netif_list; netif; netif = netif->next) + NETIF_FOREACH(netif) if (local_port == netif_get_state (netif)->readptname) break; diff --git a/lwip/port/netif/hurdtunif.c b/lwip/port/netif/hurdtunif.c index da4d5cbe..456dd297 100644 --- a/lwip/port/netif/hurdtunif.c +++ b/lwip/port/netif/hurdtunif.c @@ -296,7 +296,7 @@ check_open_hook (struct trivfs_control *cntl, struct iouser *user, int flags) struct netif *netif; struct hurdtunif *tunif; - for (netif = netif_list; netif; netif = netif->next) + NETIF_FOREACH(netif) { tunif = (struct hurdtunif *) netif_get_state (netif); if (tunif->cntl == cntl) |