mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 23:10:15 +00:00

Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
33 lines
770 B
JavaScript
33 lines
770 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
const server = net.createServer({
|
|
allowHalfOpen: true
|
|
}, common.mustCall(function(socket) {
|
|
socket.resume();
|
|
socket.on('end', common.mustCall(function() {}));
|
|
socket.end();
|
|
}));
|
|
|
|
server.listen(0, function() {
|
|
const client = net.connect({
|
|
host: '127.0.0.1',
|
|
port: this.address().port,
|
|
allowHalfOpen: true
|
|
}, common.mustCall(function() {
|
|
console.error('client connect cb');
|
|
client.resume();
|
|
client.on('end', common.mustCall(function() {
|
|
setTimeout(function() {
|
|
assert(client.writable);
|
|
client.end();
|
|
}, 10);
|
|
}));
|
|
client.on('close', function() {
|
|
server.close();
|
|
});
|
|
}));
|
|
});
|