@@ -3217,6 +3217,10 @@ changes:
3217
3217
* ` IncomingMessage ` {http.IncomingMessage} Specifies the ` IncomingMessage `
3218
3218
class to be used. Useful for extending the original ` IncomingMessage ` .
3219
3219
** Default:** ` IncomingMessage ` .
3220
+ * ` joinDuplicateHeaders ` {boolean} It joins the field line values of multiple
3221
+ headers in a request with ` , ` instead of discarding the duplicates.
3222
+ See [ ` message.headers ` ] [ ] for more information.
3223
+ ** Default:** ` false ` .
3220
3224
* ` keepAlive ` {boolean} If set to ` true ` , it enables keep-alive functionality
3221
3225
on the socket immediately after a new incoming connection is received,
3222
3226
similarly on what is done in \[ ` socket.setKeepAlive([enable][, initialDelay]) ` ] \[ ` socket.setKeepAlive(enable, initialDelay) ` ] .
@@ -3228,10 +3232,6 @@ changes:
3228
3232
the entire request from the client.
3229
3233
See [ ` server.requestTimeout ` ] [ ] for more information.
3230
3234
** Default:** ` 300000 ` .
3231
- * ` joinDuplicateHeaders ` {boolean} It joins the field line values of multiple
3232
- headers in a request with ` , ` instead of discarding the duplicates.
3233
- See [ ` message.headers ` ] [ ] for more information.
3234
- ** Default:** ` false ` .
3235
3235
* ` ServerResponse ` {http.ServerResponse} Specifies the ` ServerResponse ` class
3236
3236
to be used. Useful for extending the original ` ServerResponse ` . ** Default:**
3237
3237
` ServerResponse ` .
@@ -3454,6 +3454,10 @@ changes:
3454
3454
invalid HTTP headers when ` true ` . Using the insecure parser should be
3455
3455
avoided. See [ ` --insecure-http-parser ` ] [ ] for more information.
3456
3456
** Default:** ` false `
3457
+ * ` joinDuplicateHeaders ` {boolean} It joins the field line values of
3458
+ multiple headers in a request with ` , ` instead of discarding
3459
+ the duplicates. See [ ` message.headers ` ] [ ] for more information.
3460
+ ** Default:** ` false ` .
3457
3461
* ` localAddress ` {string} Local interface to bind for network connections.
3458
3462
* ` localPort ` {number} Local port to connect from.
3459
3463
* ` lookup ` {Function} Custom lookup function. ** Default:** [ ` dns.lookup() ` ] [ ] .
@@ -3481,10 +3485,6 @@ changes:
3481
3485
* ` uniqueHeaders ` {Array} A list of request headers that should be sent
3482
3486
only once. If the header's value is an array, the items will be joined
3483
3487
using ` ; ` .
3484
- * ` joinDuplicateHeaders ` {boolean} It joins the field line values of
3485
- multiple headers in a request with ` , ` instead of discarding
3486
- the duplicates. See [ ` message.headers ` ] [ ] for more information.
3487
- ** Default:** ` false ` .
3488
3488
* ` callback ` {Function}
3489
3489
* Returns: {http.ClientRequest}
3490
3490
0 commit comments