You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears that getaddrinfo() is prone to failure in Musl. Further investigation revealed that this issue is related to the IPv6 protocol, as RuxOS does not yet support IPv6.
To be precise, I found a piece of code similar to this in musl libc:
#defineEAFNOSUPPORT 97 /* Address family not supported by protocol */
However, the return value provided in the above figure is:
#defineEINVAL 22 /* Invalid argument */
Therefore, it is currently necessary to fix this return value error or to add support for IPv6.
The text was updated successfully, but these errors were encountered:
It appears that
getaddrinfo()
is prone to failure in Musl. Further investigation revealed that this issue is related to the IPv6 protocol, as RuxOS does not yet support IPv6.To be precise, I found a piece of code similar to this in musl libc:
However, the return value provided in the above figure is:
Therefore, it is currently necessary to fix this return value error or to add support for IPv6.
The text was updated successfully, but these errors were encountered: