Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-net-localport.js « sequential « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 239196813ad8a32be15d5652f1d50b65c1381ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var common = require('../common');
var assert = require('assert');
var net = require('net');

var server = net.createServer(function(socket) {
  console.log(socket.remotePort);
  assert.strictEqual(socket.remotePort, common.PORT + 1);
  socket.end();
  socket.on('close', function() {
    server.close();
  });
}).listen(common.PORT).on('listening', function() {
  var client = net.connect({
    host: '127.0.0.1',
    port: common.PORT,
    localPort: common.PORT + 1,
  }).on('connect', function() {
    assert.strictEqual(client.localPort, common.PORT + 1);
  });
})