mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 13:01:03 +00:00

PR-URL: https://github.com/nodejs/node/pull/21561 Fixes: https://github.com/nodejs/node/issues/20824 Fixes: https://github.com/nodejs/node/issues/21560 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
38 lines
985 B
JavaScript
38 lines
985 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const http2 = require('http2');
|
|
const net = require('net');
|
|
|
|
const {
|
|
HTTP2_HEADER_CONTENT_TYPE
|
|
} = http2.constants;
|
|
|
|
const server = http2.createServer();
|
|
server.on('stream', common.mustCall((stream) => {
|
|
stream.respondWithFile(process.execPath, {
|
|
[HTTP2_HEADER_CONTENT_TYPE]: 'application/octet-stream'
|
|
});
|
|
}));
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
const client = http2.connect(`http://localhost:${server.address().port}`);
|
|
const req = client.request();
|
|
|
|
req.on('response', common.mustCall(() => {}));
|
|
req.on('data', common.mustCall(() => {
|
|
net.Socket.prototype.destroy.call(client.socket);
|
|
server.close();
|
|
}));
|
|
req.end();
|
|
}));
|
|
|
|
// TODO(addaleax): This is a *hack*. HTTP/2 needs to have a proper way of
|
|
// dealing with this kind of issue.
|
|
process.once('uncaughtException', (err) => {
|
|
if (err.code === 'ECONNRESET') return;
|
|
throw err;
|
|
});
|