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.
 
 
 
 
 
 

18 lines
422 B

// child process that listens on a socket, allows testing of an EADDRINUSE condition
const common = require('../common');
const net = require('net');
common.refreshTmpDir();
var server = net.createServer().listen(common.PIPE, function() {
console.log('child listening');
process.send('listening');
});
function onmessage() {
console.log('child exiting');
server.close();
}
process.once('message', onmessage);