TCP timeout opt-in instead of opt-out
For speed, idle connections are super cheap.
This commit is contained in:
parent
b94af8d6b1
commit
3adf7a3dcf
20
lib/net.js
20
lib/net.js
@ -145,15 +145,17 @@ var timeout = new (function () {
|
||||
|
||||
|
||||
var unenroll = this.unenroll = function (socket) {
|
||||
socket._idleNext._idlePrev = socket._idlePrev;
|
||||
socket._idlePrev._idleNext = socket._idleNext;
|
||||
if (socket._idleNext) {
|
||||
socket._idleNext._idlePrev = socket._idlePrev;
|
||||
socket._idlePrev._idleNext = socket._idleNext;
|
||||
|
||||
var list = lists[socket._idleTimeout];
|
||||
// if empty then stop the watcher
|
||||
//sys.puts('unenroll');
|
||||
if (list && list._idlePrev == list) {
|
||||
//sys.puts('unenroll: list empty');
|
||||
list.stop();
|
||||
var list = lists[socket._idleTimeout];
|
||||
// if empty then stop the watcher
|
||||
//sys.puts('unenroll');
|
||||
if (list && list._idlePrev == list) {
|
||||
//sys.puts('unenroll: list empty');
|
||||
list.stop();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@ -256,8 +258,6 @@ function _doFlush () {
|
||||
}
|
||||
|
||||
function initSocket (self) {
|
||||
timeout.enroll(self, 60*1000); // default timeout, 60 seconds
|
||||
|
||||
self._readWatcher = ioWatchers.alloc();
|
||||
self._readWatcher.callback = function () {
|
||||
// If this is the first recv (recvBuffer doesn't exist) or we've used up
|
||||
|
Loading…
x
Reference in New Issue
Block a user