From: Sara Golemon Date: Mon, 27 Nov 2017 17:47:26 +0000 (-0500) Subject: Bugfix net_get_interfaces() on NetBSD X-Git-Tag: php-7.3.0alpha1~942 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d57740818ef2fda408bf6fd86c2e7831f57389c;p=php Bugfix net_get_interfaces() on NetBSD --- diff --git a/ext/standard/net.c b/ext/standard/net.c index f8d06e04cd..2aee77ed6e 100644 --- a/ext/standard/net.c +++ b/ext/standard/net.c @@ -29,7 +29,6 @@ #if HAVE_GETIFADDRS # include -# include #endif #ifdef PHP_WIN32 @@ -38,6 +37,8 @@ # include # include # include +#else +# include #endif PHPAPI zend_string* php_inet_ntop(const struct sockaddr *addr) { @@ -95,6 +96,7 @@ PHPAPI zend_string* php_inet_ntop(const struct sockaddr *addr) { return NULL; } +#if defined(PHP_WIN32) || HAVE_GETIFADDRS static void iface_append_unicast(zval *unicast, zend_long flags, struct sockaddr *addr, struct sockaddr *netmask, struct sockaddr *broadcast, struct sockaddr *ptp) { @@ -124,6 +126,7 @@ static void iface_append_unicast(zval *unicast, zend_long flags, add_next_index_zval(unicast, &u); } +#endif /* {{{ proto array|false net_get_interfaces() Returns an array in the form: