X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Ftcpip.c;h=e712c0ef7bbf107e76e8a6ca33b862ff3c0bc65e;hp=6bb8a9071d02686936aa12c100a6ad96643ca255;hb=d7971954990c423d60a52030f5dfa78d32003486;hpb=8f7c9a27753894afb11d443b1c58419d81251bd1 diff --git a/src/tcpip.c b/src/tcpip.c index 6bb8a90..e712c0e 100644 --- a/src/tcpip.c +++ b/src/tcpip.c @@ -367,7 +367,7 @@ struct addrinfo *tcpip_getaddrinfo(const char *str, const char *port, if (!strcmp("@", host)) { hints.ai_flags = AI_PASSIVE; - hints.ai_family = AF_INET6; + hints.ai_family = AF_UNSPEC; error = getaddrinfo(0, port, &hints, &res); *ipv6_only = 0; } @@ -463,15 +463,27 @@ void *tcpip_straddr(COMSTACK h, const char *str) int s = -1; for (ai = sp->ai; ai; ai = ai->ai_next) { - s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); - if (s != -1) - break; + if (ai->ai_family == AF_INET6) + { + s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); + if (s != -1) + break; + } + } + if (s == -1) + { + for (ai = sp->ai; ai; ai = ai->ai_next) + { + s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); + if (s != -1) + break; + } } if (s == -1) return 0; assert(ai); h->iofile = s; - if (ipv6_only >= 0 && + if (ai->ai_family == AF_INET6 && ipv6_only >= 0 && setsockopt(h->iofile, IPPROTO_IPV6, IPV6_V6ONLY, &ipv6_only, sizeof(ipv6_only)))