-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net: add lookup option to Socket.prototype.connect
Allows customization of the lookup function used when Socket.prototype.connect is called using a hostname.
- Loading branch information
Showing
3 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
var common = require('../common'); | ||
var assert = require('assert'); | ||
var net = require('net'); | ||
var dns = require('dns'); | ||
var ok = false; | ||
|
||
function check(addressType, cb) { | ||
var server = net.createServer(function(client) { | ||
client.end(); | ||
server.close(); | ||
cb && cb(); | ||
}); | ||
|
||
var address = addressType === 4 ? '127.0.0.1' : '::1'; | ||
server.listen(common.PORT, address, function() { | ||
net.connect({ | ||
port: common.PORT, | ||
host: 'localhost', | ||
lookup: lookup | ||
}).on('lookup', function(err, ip, type) { | ||
assert.equal(err, null); | ||
assert.equal(ip, address); | ||
assert.equal(type, addressType); | ||
ok = true; | ||
}); | ||
}); | ||
|
||
function lookup(host, dnsopts, cb) { | ||
dnsopts.family = addressType; | ||
dns.lookup(host, dnsopts, cb); | ||
} | ||
} | ||
|
||
check(4, function() { | ||
common.hasIPv6 && check(6); | ||
}); | ||
|