mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
6059cbedbd
PR-URL: https://github.com/nodejs/node/pull/45027 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
23 lines
448 B
JavaScript
23 lines
448 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const net = require('net');
|
|
|
|
const server = net.createServer((socket) => {
|
|
socket.resume();
|
|
}).unref();
|
|
|
|
server.listen(common.mustCall(() => {
|
|
const connect = (...args) => {
|
|
const socket = net.createConnection(server.address().port, () => {
|
|
socket.end(...args);
|
|
});
|
|
};
|
|
|
|
const cb = common.mustCall(3);
|
|
|
|
connect(cb);
|
|
connect('foo', cb);
|
|
connect('foo', 'utf8', cb);
|
|
}));
|