]> git.sur5r.net Git - i3/i3status/commitdiff
Cache the result of the DNS query also if there is no IPv6 connectivity (Thanks dothe...
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 3 Jan 2011 14:00:42 +0000 (15:00 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 3 Jan 2011 14:00:42 +0000 (15:00 +0100)
src/print_ipv6_addr.c

index b370011f0ac0e53fe24fa02a3aea37c418bbb0f2..e96c0d3d712b8b04eb2668ab6084ede42fe3b3d9 100644 (file)
@@ -70,6 +70,7 @@ static char *get_ipv6_addr() {
 
         memset(&hints, 0, sizeof(struct addrinfo));
         hints.ai_family = AF_INET6;
+        hints.ai_socktype = SOCK_DGRAM;
 
         /* We resolve the K root server to get a public IPv6 address. You can
          * replace this with any other host which has an AAAA record, but the
@@ -83,7 +84,11 @@ static char *get_ipv6_addr() {
 
         for (resp = result; resp != NULL; resp = resp->ai_next) {
                 char *addr_string = get_sockname(resp);
-                if (!addr_string)
+                /* If we could not get our own address and there is more than
+                 * one result for resolving k.root-servers.net, we cannot
+                 * cache. Otherwise, no matter if we got IPv6 connectivity or
+                 * not, we will cache the (single) result and are done. */
+                if (!addr_string && result->ai_next != NULL)
                         continue;
 
                 if ((cached = malloc(sizeof(struct addrinfo))) == NULL)