mirror of https://github.com/nodejs/node.git
23 lines
585 B
JavaScript
23 lines
585 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var server = net.createServer(function(socket) {
|
|
socket.end();
|
|
});
|
|
|
|
server.listen(0, common.mustCall(function() {
|
|
var client = net.createConnection(this.address().port);
|
|
server.close();
|
|
// server connection event has not yet fired
|
|
// client is still attempting to connect
|
|
assert.doesNotThrow(function() {
|
|
client.remoteAddress;
|
|
client.remoteFamily;
|
|
client.remotePort;
|
|
});
|
|
// exit now, do not wait for the client error event
|
|
process.exit(0);
|
|
}));
|