aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhaoming Luo <zhaoming1357@qq.com>2024-10-27 22:58:48 +0800
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-10-27 16:07:29 +0100
commitb52406be3b9cbc30b1d03fef3e8e4513f55c08d6 (patch)
treee1f3dea6c61383dd5518a0bc48bf0361fbe1c3ab
parent7ceece0390befdd9e0d8f634cb01d26db73dbb6e (diff)
downloadhurd-b52406be3b9cbc30b1d03fef3e8e4513f55c08d6.tar.gz
hurd-b52406be3b9cbc30b1d03fef3e8e4513f55c08d6.tar.bz2
hurd-b52406be3b9cbc30b1d03fef3e8e4513f55c08d6.zip
Using NETIF_FOREACH to replace netif for-loops
Come across NETIF_FOREACH in /usr/include/lwip/lwip/netif.h, but I'm not sure if it affects some self-contained stuff. netif.h belongs to liblwip-dev. Message-ID: <tencent_3A8C7926D4CB059A970F2B5046C547149409@qq.com>
-rw-r--r--lwip/iioctl-ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lwip/iioctl-ops.c b/lwip/iioctl-ops.c
index 14c4d585..f46b9cdb 100644
--- a/lwip/iioctl-ops.c
+++ b/lwip/iioctl-ops.c
@@ -42,7 +42,7 @@ get_if (const char *name)
memcpy (ifname, name, IFNAMSIZ - 1);
ifname[IFNAMSIZ - 1] = 0;
- for (netif = netif_list; netif != 0; netif = netif->next)
+ NETIF_FOREACH(netif)
{
if (strcmp (netif_get_state (netif)->devname, ifname) == 0)
break;
@@ -376,7 +376,7 @@ lwip_S_iioctl_siocgifindex (struct sock_user * user,
return EOPNOTSUPP;
i = 1; /* The first index must be 1 */
- for (netif = netif_list; netif != 0; netif = netif->next)
+ NETIF_FOREACH(netif)
{
if (strcmp (netif_get_state (netif)->devname, ifnam) == 0)
{
@@ -410,7 +410,7 @@ lwip_S_iioctl_siocgifname (struct sock_user * user,
return EINVAL;
i = 1; /* The first index is 1 */
- for (netif = netif_list; netif != 0; netif = netif->next)
+ NETIF_FOREACH(netif)
{
if (i == *index)
break;