mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
513 B
23 lines
513 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
var ok = false;
|
|
|
|
var server = net.createServer(function(client) {
|
|
client.end();
|
|
server.close();
|
|
});
|
|
|
|
server.listen(common.PORT, '127.0.0.1', function() {
|
|
net.connect(common.PORT, 'localhost').on('lookup', function(err, ip, type) {
|
|
assert.equal(err, null);
|
|
assert.equal(ip, '127.0.0.1');
|
|
assert.equal(type, '4');
|
|
ok = true;
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert(ok);
|
|
});
|
|
|