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>
31 lines
694 B
JavaScript
31 lines
694 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
|
|
const server = http.createServer(common.mustCall(function(req, res) {
|
|
res.writeHead(200);
|
|
res.write('a');
|
|
|
|
req.on('close', common.mustCall(function() {
|
|
console.error('request aborted');
|
|
}));
|
|
res.on('close', common.mustCall(function() {
|
|
console.error('response aborted');
|
|
}));
|
|
}));
|
|
server.listen(0);
|
|
|
|
server.on('listening', function() {
|
|
console.error('make req');
|
|
http.get({
|
|
port: this.address().port
|
|
}, function(res) {
|
|
console.error('got res');
|
|
res.on('data', function(data) {
|
|
console.error('destroy res');
|
|
res.destroy();
|
|
server.close();
|
|
});
|
|
});
|
|
});
|