mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 06:31:11 +00:00

* respondWithFD now supports optional statCheck * respondWithFD and respondWithFile both support offset/length for range requests * Fix linting nits following most recent update PR-URL: https://github.com/nodejs/node/pull/14239 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
33 lines
732 B
JavaScript
33 lines
732 B
JavaScript
// Flags: --expose-http2
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const h2 = require('http2');
|
|
|
|
const server = h2.createServer();
|
|
|
|
// we use the lower-level API here
|
|
server.on('stream', common.mustCall(onStream));
|
|
|
|
function onStream(stream, headers, flags) {
|
|
const session = stream.session;
|
|
stream.session.shutdown({ graceful: true }, common.mustCall(() => {
|
|
session.destroy();
|
|
}));
|
|
stream.respond({});
|
|
stream.end('data');
|
|
}
|
|
|
|
server.listen(0);
|
|
|
|
server.on('listening', common.mustCall(() => {
|
|
|
|
const client = h2.connect(`http://localhost:${server.address().port}`);
|
|
|
|
const req = client.request({ ':path': '/' });
|
|
|
|
req.resume();
|
|
req.on('end', common.mustCall(() => server.close()));
|
|
req.end();
|
|
}));
|