]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/blobdiff - src/connection.c
Don't use AI_V4MAPPED in getaddrinfo().
[tlsproxy/tlsproxy.git] / src / connection.c
index 0d287491e861b9ad87f2d3844d592fc066768324..793e4680ebfc6c9312498298a6a4737e5513f2a8 100644 (file)
@@ -844,7 +844,7 @@ static int connect_to_host(const char *hostname, const char *port) {
     gai_hints.ai_protocol = 0;
     gai_hints.ai_flags    = AI_NUMERICSERV /* given port is numeric */
                           | AI_ADDRCONFIG  /* supported by this computer */
-                          | AI_V4MAPPED;   /* support IPv4 through IPv6 */
+                          ;
     gai_return = getaddrinfo(hostname, port, &gai_hints, &gai_result);
     if (gai_return != 0) {
         if (gai_return == EAI_SYSTEM) {