Skip to content

Commit f4d3d12

Browse files
danbevjasnell
authored andcommitted
http: use CRLF conistently in _http_outgoing.js
PR-URL: #37851 Reviewed-By: Zeyu Yang <himself65@outlook.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 3b3838d commit f4d3d12

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/_http_outgoing.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -502,14 +502,14 @@ function _storeHeader(firstLine, headers) {
502502
const shouldSendKeepAlive = this.shouldKeepAlive &&
503503
(state.contLen || this.useChunkedEncodingByDefault || this.agent);
504504
if (shouldSendKeepAlive) {
505-
header += 'Connection: keep-alive\r\n';
505+
header += 'Connection: keep-alive' + CRLF;
506506
if (this._keepAliveTimeout && this._defaultKeepAlive) {
507507
const timeoutSeconds = MathFloor(this._keepAliveTimeout / 1000);
508-
header += `Keep-Alive: timeout=${timeoutSeconds}\r\n`;
508+
header += `Keep-Alive: timeout=${timeoutSeconds}${CRLF}`;
509509
}
510510
} else {
511511
this._last = true;
512-
header += 'Connection: close\r\n';
512+
header += 'Connection: close' + CRLF;
513513
}
514514
}
515515

@@ -525,7 +525,7 @@ function _storeHeader(firstLine, headers) {
525525
typeof this._contentLength === 'number') {
526526
header += 'Content-Length: ' + this._contentLength + CRLF;
527527
} else if (!this._removedTE) {
528-
header += 'Transfer-Encoding: chunked\r\n';
528+
header += 'Transfer-Encoding: chunked' + CRLF;
529529
this.chunkedEncoding = true;
530530
} else {
531531
// We should only be able to get here if both Content-Length and
@@ -740,7 +740,7 @@ ObjectDefineProperty(OutgoingMessage.prototype, 'headersSent', {
740740
get: function() { return !!this._header; }
741741
});
742742

743-
const crlf_buf = Buffer.from('\r\n');
743+
const crlf_buf = Buffer.from(CRLF);
744744
OutgoingMessage.prototype.write = function write(chunk, encoding, callback) {
745745
if (typeof encoding === 'function') {
746746
callback = encoding;
@@ -903,7 +903,7 @@ OutgoingMessage.prototype.end = function end(chunk, encoding, callback) {
903903
state.finalCalled = true;
904904

905905
if (this._hasBody && this.chunkedEncoding) {
906-
this._send('0\r\n' + this._trailer + '\r\n', 'latin1', finish);
906+
this._send('0' + CRLF + this._trailer + CRLF, 'latin1', finish);
907907
} else {
908908
// Force a flush, HACK.
909909
this._send('', 'latin1', finish);

0 commit comments

Comments
 (0)