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.
24 lines
659 B
24 lines
659 B
'use strict';
|
|
// This test binds to one port, then attempts to start a server on that
|
|
// port. It should be EADDRINUSE but be able to then bind to another port.
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
const server1 = net.Server();
|
|
|
|
const server2 = net.Server();
|
|
|
|
server2.on('error', common.mustCall(function(e) {
|
|
assert.strictEqual(e.code, 'EADDRINUSE');
|
|
|
|
server2.listen(0, common.mustCall(function() {
|
|
server1.close();
|
|
server2.close();
|
|
}));
|
|
}));
|
|
|
|
server1.listen(0, common.mustCall(function() {
|
|
// This should make server2 emit EADDRINUSE
|
|
server2.listen(this.address().port);
|
|
}));
|
|
|