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.
26 lines
631 B
26 lines
631 B
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var server = net.createServer(function (c) {
|
|
c.write('hello');
|
|
c.unref();
|
|
});
|
|
server.listen(common.PORT);
|
|
server.unref();
|
|
|
|
var timedout = false;
|
|
|
|
[8, 5, 3, 6, 2, 4].forEach(function (T) {
|
|
var socket = net.createConnection(common.PORT, 'localhost');
|
|
socket.setTimeout(T * 1000, function () {
|
|
console.log(process._getActiveHandles());
|
|
timedout = true;
|
|
socket.destroy();
|
|
});
|
|
socket.unref();
|
|
});
|
|
|
|
process.on('exit', function () {
|
|
assert.strictEqual(timedout, false, 'Socket timeout should not hold loop open');
|
|
});
|
|
|