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.
22 lines
585 B
22 lines
585 B
10 years ago
|
'use strict';
|
||
11 years ago
|
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);
|
||
|
});
|
||
10 years ago
|
});
|