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.
33 lines
842 B
33 lines
842 B
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var net = require('net');
|
|
|
|
var conns = 0;
|
|
|
|
var server = net.createServer(function(socket) {
|
|
conns++;
|
|
assert.equal('127.0.0.1', socket.remoteAddress);
|
|
socket.on('end', function() {
|
|
server.close();
|
|
});
|
|
});
|
|
|
|
server.listen(common.PORT, 'localhost', function() {
|
|
var client = net.createConnection(common.PORT, 'localhost');
|
|
var client2 = net.createConnection(common.PORT);
|
|
client.on('connect', function() {
|
|
assert.equal('127.0.0.1', client.remoteAddress);
|
|
assert.equal(common.PORT, client.remotePort);
|
|
client.end();
|
|
});
|
|
client2.on('connect', function() {
|
|
assert.equal('127.0.0.1', client2.remoteAddress);
|
|
assert.equal(common.PORT, client2.remotePort);
|
|
client2.end();
|
|
});
|
|
});
|
|
|
|
process.exit(function() {
|
|
assert.equal(2, conns);
|
|
});
|