@@ -186,56 +186,49 @@ CHIP_ERROR DiagnosticDataProviderImpl::GetNetworkInterfaces(NetworkInterface **
186
186
NetworkInterface * head = NULL ;
187
187
struct ifaddrs * ifaddr = nullptr ;
188
188
189
- if (xnetif == NULL )
189
+ // xnetif is never null, no need to check. If we do check with -Werror=address, we get compiler error.
190
+ for (struct netif * ifa = xnetif; ifa != NULL ; ifa = ifa->next )
190
191
{
191
- ChipLogError (DeviceLayer, " Failed to get network interfaces" );
192
- }
193
- else
194
- {
195
- for (struct netif * ifa = xnetif; ifa != NULL ; ifa = ifa->next )
192
+ NetworkInterface * ifp = new NetworkInterface ();
193
+
194
+ Platform::CopyString (ifp->Name , ifa->name );
195
+
196
+ ifp->name = CharSpan::fromCharString (ifp->Name );
197
+ ifp->isOperational = true ;
198
+ if ((ifa->flags ) & NETIF_FLAG_ETHERNET)
199
+ ifp->type = EMBER_ZCL_INTERFACE_TYPE_ENUM_ETHERNET;
200
+ else
201
+ ifp->type = EMBER_ZCL_INTERFACE_TYPE_ENUM_WI_FI;
202
+ ifp->offPremiseServicesReachableIPv4 .SetNull ();
203
+ ifp->offPremiseServicesReachableIPv6 .SetNull ();
204
+
205
+ memcpy (ifp->MacAddress , ifa->hwaddr , sizeof (ifa->hwaddr ));
206
+
207
+ if (0 )
196
208
{
197
- NetworkInterface * ifp = new NetworkInterface ();
198
-
199
- Platform::CopyString (ifp->Name , ifa->name );
200
-
201
- ifp->name = CharSpan::fromCharString (ifp->Name );
202
- ifp->isOperational = true ;
203
- if ((ifa->flags ) & NETIF_FLAG_ETHERNET)
204
- ifp->type = EMBER_ZCL_INTERFACE_TYPE_ENUM_ETHERNET;
205
- else
206
- ifp->type = EMBER_ZCL_INTERFACE_TYPE_ENUM_WI_FI;
207
- ifp->offPremiseServicesReachableIPv4 .SetNull ();
208
- ifp->offPremiseServicesReachableIPv6 .SetNull ();
209
-
210
- memcpy (ifp->MacAddress , ifa->hwaddr , sizeof (ifa->hwaddr ));
211
-
212
- if (0 )
213
- {
214
- ChipLogError (DeviceLayer, " Failed to get network hardware address" );
215
- }
216
- else
217
- {
218
- // Set 48-bit IEEE MAC Address
219
- ifp->hardwareAddress = ByteSpan (ifp->MacAddress , 6 );
220
- }
221
-
222
- if (ifa->ip_addr .u_addr .ip4 .addr != 0 )
223
- {
224
- memcpy (ifp->Ipv4AddressesBuffer [0 ], &(ifa->ip_addr .u_addr .ip4 .addr ), kMaxIPv4AddrSize );
225
- ifp->Ipv4AddressSpans [0 ] = ByteSpan (ifp->Ipv4AddressesBuffer [0 ], kMaxIPv4AddrSize );
226
- ifp->IPv4Addresses = chip::app::DataModel::List<chip::ByteSpan>(ifp->Ipv4AddressSpans , 1 );
227
- }
228
-
229
- if (ifa->ip6_addr ->u_addr .ip6 .addr != 0 )
230
- {
231
- memcpy (ifp->Ipv6AddressesBuffer [0 ], &(ifa->ip6_addr ->u_addr .ip6 .addr ), kMaxIPv6AddrSize );
232
- ifp->Ipv6AddressSpans [0 ] = ByteSpan (ifp->Ipv6AddressesBuffer [0 ], kMaxIPv6AddrSize );
233
- ifp->IPv6Addresses = chip::app::DataModel::List<chip::ByteSpan>(ifp->Ipv6AddressSpans , 1 );
234
- }
235
-
236
- ifp->Next = head;
237
- head = ifp;
209
+ ChipLogError (DeviceLayer, " Failed to get network hardware address" );
238
210
}
211
+ else
212
+ {
213
+ // Set 48-bit IEEE MAC Address
214
+ ifp->hardwareAddress = ByteSpan (ifp->MacAddress , 6 );
215
+ }
216
+
217
+ if (ifa->ip_addr .u_addr .ip4 .addr != 0 )
218
+ {
219
+ memcpy (ifp->Ipv4AddressesBuffer [0 ], &(ifa->ip_addr .u_addr .ip4 .addr ), kMaxIPv4AddrSize );
220
+ ifp->Ipv4AddressSpans [0 ] = ByteSpan (ifp->Ipv4AddressesBuffer [0 ], kMaxIPv4AddrSize );
221
+ ifp->IPv4Addresses = chip::app::DataModel::List<chip::ByteSpan>(ifp->Ipv4AddressSpans , 1 );
222
+ }
223
+
224
+ // ifa->ip6_addr->u_addr.ip6.addr is never null, no need to check. If we do check with -Werror=address, we get compiler
225
+ // error.
226
+ memcpy (ifp->Ipv6AddressesBuffer [0 ], &(ifa->ip6_addr ->u_addr .ip6 .addr ), kMaxIPv6AddrSize );
227
+ ifp->Ipv6AddressSpans [0 ] = ByteSpan (ifp->Ipv6AddressesBuffer [0 ], kMaxIPv6AddrSize );
228
+ ifp->IPv6Addresses = chip::app::DataModel::List<chip::ByteSpan>(ifp->Ipv6AddressSpans , 1 );
229
+
230
+ ifp->Next = head;
231
+ head = ifp;
239
232
}
240
233
241
234
*netifpp = head;
0 commit comments