diff options
| author | Dave Voutila <voutilad@gmail.com> | 2021-01-02 17:44:13 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-02 14:44:13 -0800 |
| commit | 6d5fcbbf4bac0639d531577786b158c24b60d9c6 (patch) | |
| tree | 5a63b335d757b40a38dc23442c66055fefd73098 /src/compat | |
| parent | 44b8e23f39e4753ba8e9b7999dd5158adaecb5dc (diff) | |
| download | nng-6d5fcbbf4bac0639d531577786b158c24b60d9c6.tar.gz nng-6d5fcbbf4bac0639d531577786b158c24b60d9c6.tar.bz2 nng-6d5fcbbf4bac0639d531577786b158c24b60d9c6.zip | |
getaddrinfo(3) on musl & BSDs fails with servname = "" (#1396)
If one calls getaddrinfo(3) on OpenBSD like so, it returns -8
EAI_NONAME:
struct addrinfo hints;
struct addrinfo *results;
int rv;
results = NULL;
memset(&hints, 0, sizeof(hints));
hints.ai_flags = AI_ADDRCONFIG;
hints.ai_flags |= AI_PASSIVE;
hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;
rv = getaddrinfo("localhost", "", &hints, &results);
In the above code, that mirrors the current logic in resolv_task(), rv
will end up being -8. On non-musl, non-BSD posix systems I
tested (only amd64 Debian), it succeeds and returns 0.
Diffstat (limited to 'src/compat')
0 files changed, 0 insertions, 0 deletions
