diff options
Diffstat (limited to 'util/sock.cpp')
-rw-r--r-- | util/sock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sock.cpp b/util/sock.cpp index c4e1a71..3b97c4b 100644 --- a/util/sock.cpp +++ b/util/sock.cpp @@ -51,7 +51,7 @@ namespace mongo { addrinfo hints; memset(&hints, 0, sizeof(addrinfo)); hints.ai_socktype = SOCK_STREAM; - hints.ai_flags = AI_ADDRCONFIG; + //hints.ai_flags = AI_ADDRCONFIG; // This is often recommended but don't do it. SERVER-1579 hints.ai_family = (IPv6Enabled() ? AF_UNSPEC : AF_INET); stringstream ss; |