mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
24 lines
500 B
JavaScript
24 lines
500 B
JavaScript
var common = require('../common');
|
|
var net = require('net');
|
|
var assert = require('assert');
|
|
|
|
var timedout = false;
|
|
|
|
var server = net.Server();
|
|
server.listen(common.PORT, function() {
|
|
var socket = net.createConnection(common.PORT);
|
|
socket.setTimeout(100, function() {
|
|
timedout = true;
|
|
socket.destroy();
|
|
server.close();
|
|
clearTimeout(timer);
|
|
});
|
|
var timer = setTimeout(function() {
|
|
process.exit(1);
|
|
}, 200);
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(timedout);
|
|
});
|