mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
825 B
34 lines
825 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var conns = 0;
|
|
var clientLocalPorts = [];
|
|
var serverRemotePorts = [];
|
|
|
|
var server = net.createServer(function(socket) {
|
|
serverRemotePorts.push(socket.remotePort);
|
|
conns++;
|
|
});
|
|
|
|
var client = new net.Socket();
|
|
|
|
server.on('close', function() {
|
|
assert.deepEqual(clientLocalPorts, serverRemotePorts,
|
|
'client and server should agree on the ports used');
|
|
assert.equal(2, conns);
|
|
});
|
|
|
|
server.listen(common.PORT, common.localhostIPv4, testConnect);
|
|
|
|
function testConnect() {
|
|
if (conns == 2) {
|
|
return server.close();
|
|
}
|
|
client.connect(common.PORT, common.localhostIPv4, function() {
|
|
clientLocalPorts.push(this.localPort);
|
|
this.once('close', testConnect);
|
|
this.destroy();
|
|
});
|
|
}
|
|
|