diff options
author | Sara Golemon <pollita@php.net> | 2017-11-27 12:47:26 -0500 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2017-11-27 12:47:26 -0500 |
commit | 6d57740818ef2fda408bf6fd86c2e7831f57389c (patch) | |
tree | 96e0297361da9775e517ce4d6794fdc8f3b92621 | |
parent | 7ca5a7d84ebdc1b97f49cb460f200db093b96d9d (diff) | |
download | php-git-6d57740818ef2fda408bf6fd86c2e7831f57389c.tar.gz |
Bugfix net_get_interfaces() on NetBSD
-rw-r--r-- | ext/standard/net.c | 5 |
1 files changed, 4 insertions, 1 deletions
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 <ifaddrs.h> -# include <netdb.h> #endif #ifdef PHP_WIN32 @@ -38,6 +37,8 @@ # include <ws2ipdef.h> # include <Ws2tcpip.h> # include <iphlpapi.h> +#else +# include <netdb.h> #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: |