Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2020-06-23 16:35:43 +0300
committerJames M Snell <jasnell@gmail.com>2020-06-24 22:33:11 +0300
commit86e67aaa699cfb028d381b6576234c3d30339801 (patch)
tree6ed54c3e6b04449e18d41be8be98cb8b77df0f2e /doc/api/quic.md
parentec7ad1d0ec0b28c3b3782c48489d23f2b44efcd7 (diff)
quic: updates to implement for h3-29
PR-URL: https://github.com/nodejs/node/pull/34033 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Diffstat (limited to 'doc/api/quic.md')
-rw-r--r--doc/api/quic.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/api/quic.md b/doc/api/quic.md
index e6505b86545..42a8b756909 100644
--- a/doc/api/quic.md
+++ b/doc/api/quic.md
@@ -1539,9 +1539,11 @@ added: REPLACEME
`object.passphrase` if provided, or `options.passphrase` if it is not.
* `activeConnectionIdLimit` {number} Must be a value between `2` and `8`
(inclusive). Default: `2`.
+ * `congestionAlgorithm` {string} Must be either `'reno'` or `'cubic'`.
+ **Default**: `'reno'`.
* `maxAckDelay` {number}
* `maxData` {number}
- * `maxPacketSize` {number}
+ * `maxUdpPayloadSize` {number}
* `maxStreamDataBidiLocal` {number}
* `maxStreamDataBidiRemote` {number}
* `maxStreamDataUni` {number}
@@ -1706,9 +1708,11 @@ added: REPLACEME
`object.passphrase` is optional. Encrypted keys will be decrypted with
`object.passphrase` if provided, or `options.passphrase` if it is not.
* `activeConnectionIdLimit` {number}
+ * `congestionAlgorithm` {string} Must be either `'reno'` or `'cubic'`.
+ **Default**: `'reno'`.
* `maxAckDelay` {number}
* `maxData` {number}
- * `maxPacketSize` {number}
+ * `maxUdpPayloadSize` {number}
* `maxStreamsBidi` {number}
* `maxStreamsUni` {number}
* `maxStreamDataBidiLocal` {number}