From 3320b5a879c87d3a0fca01dc47ac0100b04a5d33 Mon Sep 17 00:00:00 2001 From: Paul-Louis Ageneau Date: Tue, 7 Nov 2023 23:15:55 +0100 Subject: [PATCH] Update C API doc --- DOC.md | 4 ++-- pages/content/pages/reference.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DOC.md b/DOC.md index b491fc5b0..50ad1758b 100644 --- a/DOC.md +++ b/DOC.md @@ -644,8 +644,8 @@ Arguments: - `reliability`: a structure of reliability settings containing: - `unordered`: if `true`, the Data Channel will not enforce message ordering, else it will be ordered - `unreliable`: if `true`, the Data Channel will not enforce strict reliability, else it will be reliable - - `maxPacketLifeTime`: if unreliable, maximum packet life time in milliseconds - - `maxRetransmits`: if unreliable and maxPacketLifeTime is 0, maximum number of retransmissions (0 means no retransmission) + - `maxPacketLifeTime`: if unreliable, time window in milliseconds during which transmissions and retransmissions may occur + - `maxRetransmits`: if unreliable and maxPacketLifeTime is 0, maximum number of attempted retransmissions (0 means no retransmission) - `protocol` (optional): a user-defined UTF-8 string representing the Data Channel protocol, empty if NULL - `negotiated`: if `true`, the Data Channel is assumed to be negotiated by the user and won't be negotiated by the WebRTC layer - `manualStream`: if `true`, the Data Channel will use `stream` as stream ID, else an available id is automatically selected diff --git a/pages/content/pages/reference.md b/pages/content/pages/reference.md index 19abec828..ea10e5c10 100644 --- a/pages/content/pages/reference.md +++ b/pages/content/pages/reference.md @@ -647,8 +647,8 @@ Arguments: - `reliability`: a structure of reliability settings containing: - `unordered`: if `true`, the Data Channel will not enforce message ordering, else it will be ordered - `unreliable`: if `true`, the Data Channel will not enforce strict reliability, else it will be reliable - - `maxPacketLifeTime`: if unreliable, maximum packet life time in milliseconds - - `maxRetransmits`: if unreliable and maxPacketLifeTime is 0, maximum number of retransmissions (0 means no retransmission) + - `maxPacketLifeTime`: if unreliable, time window in milliseconds during which transmissions and retransmissions may occur + - `maxRetransmits`: if unreliable and maxPacketLifeTime is 0, maximum number of attempted retransmissions (0 means no retransmission) - `protocol` (optional): a user-defined UTF-8 string representing the Data Channel protocol, empty if NULL - `negotiated`: if `true`, the Data Channel is assumed to be negotiated by the user and won't be negotiated by the WebRTC layer - `manualStream`: if `true`, the Data Channel will use `stream` as stream ID, else an available id is automatically selected