11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciconst cluster = require('cluster'); 51cb0ef41Sopenharmony_ciconst net = require('net'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciif (cluster.isPrimary) { 81cb0ef41Sopenharmony_ci cluster.fork().on('message', function(msg) { 91cb0ef41Sopenharmony_ci if (msg === 'done') this.kill(); 101cb0ef41Sopenharmony_ci }); 111cb0ef41Sopenharmony_ci} else { 121cb0ef41Sopenharmony_ci const server = net.createServer(common.mustNotCall()); 131cb0ef41Sopenharmony_ci server.listen(0, function() { 141cb0ef41Sopenharmony_ci server.unref(); 151cb0ef41Sopenharmony_ci server.ref(); 161cb0ef41Sopenharmony_ci server.close(function() { 171cb0ef41Sopenharmony_ci process.send('done'); 181cb0ef41Sopenharmony_ci }); 191cb0ef41Sopenharmony_ci }); 201cb0ef41Sopenharmony_ci} 21