Skip to content

Commit ff92b40

Browse files
authored
http: close the connection after sending a body without declared length
Previously, if you removed both content-length and transfer-encoding headers, the connection would still be kept-alive by default. This isn't helpful, because without those headers, the only way the client knows when the body is completed is when the connection closes. See https://www.rfc-editor.org/rfc/rfc7230#section-3.3.3 for more details on this message body handling logic (this is case 7). This meant that in effect, if you removed both headers every response came with a 5 second delay at the end (the default KA timeout) before the client could process it. Now, if you remove both headers the connection closes automatically immediately, so the client knows that it has received the whole message body. PR-URL: #46333 Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Paolo Insogna <[email protected]>
1 parent ac7ef31 commit ff92b40

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

lib/_http_outgoing.js

+4
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,10 @@ function _storeHeader(firstLine, headers) {
548548
// Transfer-Encoding are removed by the user.
549549
// See: test/parallel/test-http-remove-header-stays-removed.js
550550
debug('Both Content-Length and Transfer-Encoding are removed');
551+
552+
// We can't keep alive in this case, because with no header info the body
553+
// is defined as all data until the connection is closed.
554+
this._last = true;
551555
}
552556
}
553557

test/parallel/test-http-remove-header-stays-removed.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ const server = http.createServer(function(request, response) {
3737
response.setHeader('date', 'coffee o clock');
3838

3939
response.end('beep boop\n');
40-
41-
this.close();
4240
});
4341

4442
let response = '';
@@ -57,5 +55,12 @@ server.listen(0, function() {
5755
res.on('data', function(chunk) {
5856
response += chunk;
5957
});
58+
59+
setTimeout(function() {
60+
// The socket should be closed immediately, with no keep-alive, because
61+
// no content-length or transfer-encoding are used:
62+
assert.strictEqual(res.socket.closed, true);
63+
server.close();
64+
}, 10);
6065
});
6166
});

0 commit comments

Comments
 (0)