WebRTC RTCDataChannel - 如何配置才可靠?

WebRTC RTCDataChannel - how to configure to be reliable?

我启动了 RTCDataChannel,默认情况下它似乎处于不可靠模式。

我想将其配置为可靠以获得有保证的数据包传送,但 RTCDataChannelInit 配置似乎没有此设置。

dictionary RTCDataChannelInit {
             boolean        ordered = true;
             unsigned short maxPacketLifeTime;
             unsigned short maxRetransmits;
             DOMString      protocol = "";
             boolean        negotiated = false;
             unsigned short id;
}; 

此外,RTCDataChannel.isReliable 是只读的 属性。

如何将频道配置为可靠模式?

默认为可靠频道。请参阅该部分的第四段 specification