Skip to content

Commit 30666f2

Browse files
James Hartigcjihrig
James Hartig
authored andcommitted
net: use cached peername to resolve remote fields
Allows socket.remote* properties to still be accessed even after the socket is closed. Fixes: nodejs/node-v0.x-archive#9287 PR-URL: nodejs/node-v0.x-archive#9366 Reviewed-By: Colin Ihrig <[email protected]>
1 parent e6e616f commit 30666f2

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

lib/net.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -556,10 +556,10 @@ function onread(nread, buffer) {
556556

557557

558558
Socket.prototype._getpeername = function() {
559-
if (!this._handle || !this._handle.getpeername) {
560-
return {};
561-
}
562559
if (!this._peername) {
560+
if (!this._handle || !this._handle.getpeername) {
561+
return {};
562+
}
563563
var out = {};
564564
var err = this._handle.getpeername(out);
565565
if (err) return {}; // FIXME(bnoordhuis) Throw?
@@ -865,6 +865,7 @@ Socket.prototype.connect = function(options, cb) {
865865
this._writableState.errorEmitted = false;
866866
this.destroyed = false;
867867
this._handle = null;
868+
this._peername = null;
868869
}
869870

870871
var self = this;

test/parallel/test-net-remote-address-port.js

+12
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ var server = net.createServer(function(socket) {
2020
socket.on('end', function() {
2121
if (++conns_closed == 2) server.close();
2222
});
23+
socket.on('close', function() {
24+
assert.notEqual(-1, remoteAddrCandidates.indexOf(socket.remoteAddress));
25+
assert.notEqual(-1, remoteFamilyCandidates.indexOf(socket.remoteFamily));
26+
});
2327
socket.resume();
2428
});
2529

@@ -32,12 +36,20 @@ server.listen(common.PORT, 'localhost', function() {
3236
assert.equal(common.PORT, client.remotePort);
3337
client.end();
3438
});
39+
client.on('close', function() {
40+
assert.notEqual(-1, remoteAddrCandidates.indexOf(client.remoteAddress));
41+
assert.notEqual(-1, remoteFamilyCandidates.indexOf(client.remoteFamily));
42+
});
3543
client2.on('connect', function() {
3644
assert.notEqual(-1, remoteAddrCandidates.indexOf(client2.remoteAddress));
3745
assert.notEqual(-1, remoteFamilyCandidates.indexOf(client2.remoteFamily));
3846
assert.equal(common.PORT, client2.remotePort);
3947
client2.end();
4048
});
49+
client2.on('close', function() {
50+
assert.notEqual(-1, remoteAddrCandidates.indexOf(client2.remoteAddress));
51+
assert.notEqual(-1, remoteFamilyCandidates.indexOf(client2.remoteFamily));
52+
});
4153
});
4254

4355
process.on('exit', function() {

0 commit comments

Comments
 (0)