The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
44 lines
905 B
JavaScript
44 lines
905 B
JavaScript
// socket.write was not resetting the timeout timer. See
|
|
// https://github.com/joyent/node/issues/2002
|
|
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var seconds = 5;
|
|
var gotTimeout = false;
|
|
var counter = 0;
|
|
|
|
var server = net.createServer(function(socket) {
|
|
socket.setTimeout((seconds / 2) * 1000, function() {
|
|
gotTimeout = true;
|
|
console.log('timeout!!');
|
|
socket.destroy();
|
|
process.exit(1);
|
|
});
|
|
|
|
var interval = setInterval(function() {
|
|
counter++;
|
|
|
|
if (counter == seconds) {
|
|
clearInterval(interval);
|
|
server.close();
|
|
socket.destroy();
|
|
}
|
|
|
|
if (socket.writable) {
|
|
socket.write(Date.now() + '\n');
|
|
}
|
|
}, 1000);
|
|
});
|
|
|
|
|
|
server.listen(common.PORT, function() {
|
|
var s = net.connect(common.PORT);
|
|
s.pipe(process.stdout);
|
|
});
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(false, gotTimeout);
|
|
});
|