mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
ed3604cd64
PR-URL: https://github.com/nodejs/node/pull/45597 Fixes: https://github.com/nodejs/node/issues/39033 Co-authored-by: Luigi Pinca <luigipinca@gmail.com> Co-authored-by: mscdex <mscdex@users.noreply.github.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
28 lines
626 B
JavaScript
28 lines
626 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const { createServer } = require('http');
|
|
const { connect } = require('net');
|
|
|
|
// Make sure that calling the semi-private close() handlers manually doesn't
|
|
// cause an error.
|
|
|
|
const server = createServer(common.mustCall((req, res) => {
|
|
req.client._events.close.forEach((fn) => { fn.bind(req)(); });
|
|
}));
|
|
|
|
server.unref();
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
const client = connect(server.address().port);
|
|
|
|
const req = [
|
|
'POST / HTTP/1.1',
|
|
'Host: example.com',
|
|
'Content-Length: 11',
|
|
'',
|
|
'hello world',
|
|
].join('\r\n');
|
|
|
|
client.end(req);
|
|
}));
|