Skip to content

Commit ac3fbc1

Browse files
committed
net: persist net.Socket options before connect
Remembers net.Socket options called before connect and retroactively applies them after the handle has been created. This change makes the following function calls more user-friendly: - setKeepAlive() - setNoDelay() - ref() - unref() Related: nodejs/node-v0.x-archive#7077 and nodejs/node-v0.x-archive#8572
1 parent c86e383 commit ac3fbc1

File tree

3 files changed

+97
-1
lines changed

3 files changed

+97
-1
lines changed

lib/net.js

+20-1
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@ function Socket(options) {
121121
this._hadError = false;
122122
this._handle = null;
123123
this._host = null;
124+
this._unref = false;
125+
this._setNoDelay = null;
126+
this._setKeepAlive = null;
124127

125128
if (typeof options === 'number')
126129
options = { fd: options }; // Legacy interface.
@@ -323,12 +326,16 @@ Socket.prototype._onTimeout = function() {
323326

324327
Socket.prototype.setNoDelay = function(enable) {
325328
// backwards compatibility: assume true when `enable` is omitted
329+
this._setNoDelay = enable === undefined ? true : !!enable;
330+
326331
if (this._handle && this._handle.setNoDelay)
327-
this._handle.setNoDelay(enable === undefined ? true : !!enable);
332+
this._handle.setNoDelay(this._setNoDelay);
328333
};
329334

330335

331336
Socket.prototype.setKeepAlive = function(setting, msecs) {
337+
this._setKeepAlive = [setting, msecs];
338+
332339
if (this._handle && this._handle.setKeepAlive)
333340
this._handle.setKeepAlive(setting, ~~(msecs / 1000));
334341
};
@@ -766,6 +773,14 @@ function connect(self, address, port, addressType, localAddress, localPort) {
766773

767774
var err;
768775

776+
self.setNoDelay(self._setNoDelay);
777+
778+
if (self._setKeepAlive)
779+
self.setKeepAlive(self._setKeepAlive[0], self._setKeepAlive[1]);
780+
781+
if (self._unref)
782+
self.unref();
783+
769784
if (localAddress || localPort) {
770785
var bind;
771786

@@ -933,12 +948,16 @@ Socket.prototype.connect = function(options, cb) {
933948

934949

935950
Socket.prototype.ref = function() {
951+
this._unref = false;
952+
936953
if (this._handle)
937954
this._handle.ref();
938955
};
939956

940957

941958
Socket.prototype.unref = function() {
959+
this._unref = true;
960+
942961
if (this._handle)
943962
this._handle.unref();
944963
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
var common = require('../common');
2+
var assert = require('assert');
3+
var net = require('net');
4+
5+
var serverConnection;
6+
var echoServer = net.createServer(function(connection) {
7+
serverConnection = connection;
8+
connection.setTimeout(0);
9+
assert.notEqual(connection.setKeepAlive, undefined);
10+
connection.on('end', function() {
11+
connection.end();
12+
});
13+
});
14+
echoServer.listen(common.PORT);
15+
16+
echoServer.on('listening', function() {
17+
var clientConnection = new net.Socket({});
18+
// send a keepalive packet after 1000 ms
19+
// and make sure it persists
20+
clientConnection.setKeepAlive(true, 1000);
21+
clientConnection.connect(common.PORT);
22+
clientConnection.setTimeout(0);
23+
assert.equal(clientConnection._setKeepAlive[0], true);
24+
assert.equal(clientConnection._setKeepAlive[1], 1000);
25+
26+
setTimeout(function() {
27+
// make sure both connections are still open
28+
assert.equal(serverConnection.readyState, 'open');
29+
assert.equal(clientConnection.readyState, 'open');
30+
serverConnection.end();
31+
clientConnection.end();
32+
echoServer.close();
33+
}, 1200);
34+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
var common = require('../common');
2+
var assert = require('assert');
3+
var net = require('net');
4+
5+
var serverConnection;
6+
var echoServer = net.createServer(function(connection) {
7+
serverConnection = connection;
8+
connection.end()
9+
});
10+
echoServer.listen(common.PORT);
11+
12+
var setTrue = false;
13+
14+
var Socket = net.Socket;
15+
16+
Socket.prototype.setNoDelay = function(enable) {
17+
this._setNoDelay = enable === undefined ? true : !!enable;
18+
if (this._handle && this._handle.setNoDelay) {
19+
if (enable === undefined || !!enable) {
20+
setTrue = true;
21+
}
22+
this._handle.setNoDelay(this._setNoDelay);
23+
}
24+
}
25+
26+
echoServer.on('listening', function() {
27+
var sock1 = new Socket({});
28+
// setNoDelay before the handle is created
29+
// there is probably a better way to test this
30+
31+
sock1.setNoDelay();
32+
assert.equal(sock1._setNoDelay, true);
33+
sock1.connect(common.PORT, function() {
34+
var sock2 = new Socket({});
35+
assert.equal(sock2._setNoDelay, null);
36+
sock2.connect(common.PORT, function() {
37+
assert.ok(setTrue);
38+
setTimeout(function() {
39+
echoServer.close();
40+
}, 500);
41+
});
42+
});
43+
});

0 commit comments

Comments
 (0)