1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

aix: disable ipv6 link local (#4229)

AIX does not implement ifaddrs and when retrieving the network
interfaces with uv_interface_addresses there was a test failure in
tcp_connect6_link_local.

For now disable ipv6 link local on aix to:

1) fix broken aix build
2) stop blocking libuv upgrade in node

Refs: https://github.com/libuv/libuv/pull/4222#issuecomment-1812962233
Refs: https://github.com/nodejs/node/pull/50650
This commit is contained in:
Abdirahim Musse 2023-11-18 18:19:16 +00:00 committed by GitHub
parent 4785ad6337
commit bfbe4e38d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,12 +30,8 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/socket.h> #include <sys/socket.h>
#if defined(__PASE__) /* ifaddrs is not implemented on AIX and IBM i PASE */
#include <as400_protos.h> #if !defined(_AIX)
#define ifaddrs ifaddrs_pase
#define getifaddrs Qp2getifaddrs
#define freeifaddrs Qp2freeifaddrs
#else
#include <ifaddrs.h> #include <ifaddrs.h>
#endif #endif
@ -224,6 +220,10 @@ static int uv__is_ipv6_link_local(const struct sockaddr* addr) {
static int uv__ipv6_link_local_scope_id(void) { static int uv__ipv6_link_local_scope_id(void) {
/* disable link local on AIX & PASE for now */
#if defined(_AIX)
return 0;
#else
struct sockaddr_in6* a6; struct sockaddr_in6* a6;
struct ifaddrs* ifa; struct ifaddrs* ifa;
struct ifaddrs* p; struct ifaddrs* p;
@ -245,6 +245,7 @@ static int uv__ipv6_link_local_scope_id(void) {
freeifaddrs(ifa); freeifaddrs(ifa);
return rv; return rv;
#endif
} }