mirror of https://github.com/nodejs/node.git
uv: Upgrade to 382f2a26
parent
0a89e8b838
commit
d0111aa0c4
|
@ -28,7 +28,9 @@
|
|||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <ifaddrs.h>
|
||||
#ifndef SUNOS_NO_IFADDRS
|
||||
# include <ifaddrs.h>
|
||||
#endif
|
||||
#include <net/if.h>
|
||||
|
||||
#include <sys/loadavg.h>
|
||||
|
@ -406,7 +408,9 @@ void uv_free_cpu_info(uv_cpu_info_t* cpu_infos, int count) {
|
|||
|
||||
uv_err_t uv_interface_addresses(uv_interface_address_t** addresses,
|
||||
int* count) {
|
||||
|
||||
#ifdef SUNOS_NO_IFADDRS
|
||||
return uv__new_artificial_error(UV_ENOSYS);
|
||||
#else
|
||||
struct ifaddrs *addrs, *ent;
|
||||
char ip[INET6_ADDRSTRLEN];
|
||||
uv_interface_address_t* address;
|
||||
|
@ -463,6 +467,7 @@ uv_err_t uv_interface_addresses(uv_interface_address_t** addresses,
|
|||
freeifaddrs(addrs);
|
||||
|
||||
return uv_ok_;
|
||||
#endif /* SUNOS_NO_IFADDRS */
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue