This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 25155 - maxRetransmitTime is not the name of the SCTP concept it points to
Summary: maxRetransmitTime is not the name of the SCTP concept it points to
Status: RESOLVED FIXED
Alias: None
Product: WebRTC Working Group
Classification: Unclassified
Component: WebRTC API (show other bugs)
Version: unspecified
Hardware: PC Linux
: P2 normal
Target Milestone: ---
Assignee: Adam Bergkvist
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-03-26 12:37 UTC by Harald Alvestrand
Modified: 2014-06-10 14:45 UTC (History)
2 users (show)

See Also:


Attachments

Description Harald Alvestrand 2014-03-26 12:37:27 UTC
Suggestion from Michael Tuexen:

Replace
maxRetransmitTime
by
maxLifeTime.

Replace
... or set a time during which retransmissions are allowed (maxRetransmitTime).
by
... or set a time during which transmissions and retransmissions are allowed (maxLifeTime).

Replace
maxRetransmitTime of type unsigned, readonly , nullable
The RTCDataChannel.maxRetransmitTime attribute returns the length of the time window (in milliseconds) during which retransmissions may occur in unreliable mode, or null if unset. The attribute MUST be initialized to null by default and MUST return the value to which it was set when the RTCDataChannel was created.

by

maxLifeTime of type unsigned, readonly , nullable
The RTCDataChannel.maxLifeTime attribute returns the length of the time window (in milliseconds) during which transmissions and retransmissions may occur in unreliable mode, or null if unset. The attribute MUST be initialized to null by default and MUST return the value to which it was set when the RTCDataChannel was created.

Replace

maxRetransmitTime of type unsigned short
Limits the time during which the channel will retransmit data if not successfully delivered. This value may be clamped if it exceeds the maximum value supported by the user agent.

by

maxLifeTime of type unsigned short
Limits the time during which the channel will transmit or retransmit data if not acknowledged. This value may be clamped if it exceeds the maximum value supported by the user agent.
Comment 1 Harald Alvestrand 2014-03-26 16:53:39 UTC
Modification to previous suggestion:

Use the name "maxPacketLifeTime" instead of "maxLifeTime".