diff --git a/ext/standard/net.c b/ext/standard/net.c index c549bfbc5b0c0..f8e934d5393cc 100644 --- a/ext/standard/net.c +++ b/ext/standard/net.c @@ -190,7 +190,7 @@ PHP_FUNCTION(net_get_interfaces) { for (p = pAddresses; p; p = p->Next) { zval iface, unicast; - if ((IF_TYPE_ETHERNET_CSMACD != p->IfType) && (IF_TYPE_SOFTWARE_LOOPBACK != p->IfType)) { + if ((IF_TYPE_ETHERNET_CSMACD != p->IfType) && (IF_TYPE_IEEE80211 != p->IfType) && (IF_TYPE_SOFTWARE_LOOPBACK != p->IfType)) { continue; }