windows: fix dns lookup of localhost with ipv6
authorAlexis Campailla <alexis@janeasystems.com>
Wed, 18 Dec 2013 18:08:33 +0000 (10:08 -0800)
committerFedor Indutny <fedor.indutny@gmail.com>
Thu, 19 Dec 2013 08:44:50 +0000 (12:44 +0400)
Removing a hack intended to shortcut the resolution of 'localhost'
but which doesn't work for ipv6.
This was introduced in 2876141c4292791bc12c0b8701dbcc366dde7297.
However it seems that the problems that this was trying to
circumvent has gone away ages ago, when dns resolution on
Windows started relying on Win32 GetAddrInfoW, which was
probably with be2320d408de89054b254a0c812280054d946490.

Fixes test-net-connect-options-ipv6.js on Windows.

lib/dns.js

index 04cf013..34545e8 100644 (file)
@@ -120,15 +120,6 @@ exports.lookup = function(hostname, family, callback) {
     return {};
   }
 
-  // Hack required for Windows because Win7 removed the
-  // localhost entry from c:\WINDOWS\system32\drivers\etc\hosts
-  // See http://daniel.haxx.se/blog/2011/02/21/localhost-hack-on-windows/
-  // TODO Remove this once c-ares handles this problem.
-  if (process.platform == 'win32' && hostname == 'localhost') {
-    callback(null, '127.0.0.1', 4);
-    return {};
-  }
-
   var matchedFamily = net.isIP(hostname);
   if (matchedFamily) {
     callback(null, hostname, matchedFamily);