11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciconst net = require('net'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ciconst server = net.createServer((socket) => { 71cb0ef41Sopenharmony_ci socket.resume(); 81cb0ef41Sopenharmony_ci}).unref(); 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ciserver.listen(common.mustCall(() => { 111cb0ef41Sopenharmony_ci const connect = (...args) => { 121cb0ef41Sopenharmony_ci const socket = net.createConnection(server.address().port, () => { 131cb0ef41Sopenharmony_ci socket.end(...args); 141cb0ef41Sopenharmony_ci }); 151cb0ef41Sopenharmony_ci }; 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_ci const cb = common.mustCall(3); 181cb0ef41Sopenharmony_ci 191cb0ef41Sopenharmony_ci connect(cb); 201cb0ef41Sopenharmony_ci connect('foo', cb); 211cb0ef41Sopenharmony_ci connect('foo', 'utf8', cb); 221cb0ef41Sopenharmony_ci})); 23