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.
27 lines
633 B
27 lines
633 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var conns = 0;
|
|
|
|
var server = net.createServer(function(socket) {
|
|
conns++;
|
|
assert.equal(common.localhostIPv4, socket.localAddress);
|
|
assert.equal(socket.localPort, common.PORT);
|
|
socket.on('end', function() {
|
|
server.close();
|
|
});
|
|
socket.resume();
|
|
});
|
|
|
|
server.listen(common.PORT, common.localhostIPv4, function() {
|
|
var client = net.createConnection(common.PORT, common.localhostIPv4);
|
|
client.on('connect', function() {
|
|
client.end();
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(1, conns);
|
|
});
|
|
|