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.
21 lines
609 B
21 lines
609 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
const server = net.createServer(common.mustCall(function(socket) {
|
|
assert.strictEqual(socket.localAddress, common.localhostIPv4);
|
|
assert.strictEqual(socket.localPort, this.address().port);
|
|
socket.on('end', function() {
|
|
server.close();
|
|
});
|
|
socket.resume();
|
|
}));
|
|
|
|
server.listen(0, common.localhostIPv4, function() {
|
|
const client = net.createConnection(this.address()
|
|
.port, common.localhostIPv4);
|
|
client.on('connect', function() {
|
|
client.end();
|
|
});
|
|
});
|
|
|