Upload Kmake

This commit is contained in:
Gorochu
2026-05-26 23:36:42 -07:00
parent ba051b2f74
commit 555ec72358
41615 changed files with 13344630 additions and 1 deletions

View File

@ -0,0 +1,41 @@
// Flags: --expose-internals
'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const h2 = require('http2');
const { kSocket } = require('internal/http2/util');
const body =
'<html><head></head><body><h1>this is some data</h2></body></html>';
const server = h2.createServer();
// We use the lower-level API here
server.on('stream', common.mustCall((stream) => {
stream.on('error', () => {});
stream.on('aborted', common.mustCall());
stream.on('close', common.mustCall());
stream.respond();
stream.write(body);
// Purposefully do not end()
}));
server.listen(0, common.mustCall(function() {
const client = h2.connect(`http://localhost:${this.address().port}`);
const req = client.request();
req.on('response', common.mustCall(() => {
// Send a premature socket close
client[kSocket].destroy();
}));
req.resume();
req.on('end', common.mustCall());
req.on('close', common.mustCall(() => server.close()));
// On the client, the close event must call
client.on('close', common.mustCall());
}));