Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit 4a8088a

Browse files
committed
Socket.write should reset timeout timer.
Fixes #2002.
1 parent 9c11e8a commit 4a8088a

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

lib/net.js

+4
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,8 @@ Socket.prototype.write = function(data, arg1, arg2) {
426426

427427

428428
Socket.prototype._write = function(data, encoding, cb) {
429+
timers.active(this);
430+
429431
// `encoding` is unused right now, `data` is always a buffer.
430432
var writeReq = this._handle.write(data);
431433

@@ -451,6 +453,8 @@ function afterWrite(status, handle, req, buffer) {
451453
}
452454
// TODO check status.
453455

456+
timers.active(this);
457+
454458
self._pendingWriteReqs--;
455459

456460
if (self._pendingWriteReqs == 0) {

test/pummel/test-net-timeout2.js

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
// Copyright Joyent, Inc. and other Node contributors.
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a
4+
// copy of this software and associated documentation files (the
5+
// "Software"), to deal in the Software without restriction, including
6+
// without limitation the rights to use, copy, modify, merge, publish,
7+
// distribute, sublicense, and/or sell copies of the Software, and to permit
8+
// persons to whom the Software is furnished to do so, subject to the
9+
// following conditions:
10+
//
11+
// The above copyright notice and this permission notice shall be included
12+
// in all copies or substantial portions of the Software.
13+
//
14+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15+
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17+
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18+
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19+
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20+
// USE OR OTHER DEALINGS IN THE SOFTWARE.
21+
22+
// socket.write was not resetting the timeout timer. See
23+
// https://github.com/joyent/node/issues/2002
24+
25+
var assert = require('assert');
26+
var net = require('net');
27+
28+
var seconds = 5;
29+
var gotTimeout = false;
30+
var counter = 0;
31+
32+
var server = net.createServer(function(socket) {
33+
socket.setTimeout((seconds / 2) * 1000, function() {
34+
gotTimeout = true;
35+
console.log('timeout!!');
36+
socket.destroy();
37+
process.exit(1);
38+
});
39+
40+
var interval = setInterval(function() {
41+
counter++;
42+
43+
if (counter == seconds) {
44+
clearInterval(interval);
45+
server.close();
46+
socket.destroy();
47+
}
48+
49+
if (socket.writable) {
50+
socket.write(Date.now()+'\n');
51+
}
52+
}, 1000);
53+
});
54+
55+
56+
server.listen(8888, function() {
57+
var s = net.connect(8888);
58+
s.pipe(process.stdout);
59+
});
60+
61+
62+
process.on('exit', function() {
63+
assert.equal(false, gotTimeout);
64+
});

0 commit comments

Comments
 (0)