RE: Issue 174: When is an IceGatherer allowed to prune host, reflexive and relay candidates?

Does the following resolution work? 

In Section 5.3, add the timeout attribute to the constructor and interface as follows:

[Constructor(RTCIceGatherOptions options, optional unsigned long timeout)]
partial interface RTCIceGatherer {
readonly attribute unsigned long timeout;
};

timeout of type unsigned long, readonly
The time in ms after construction of the RTCIceGatherer object which the implementation must wait prior to expiring local candidates. After the timeout expires, the implementation may remove local candidates but is not required to do so. If not set in the constructor, the default timeout value is 300000 (5 minutes).

Received on Saturday, 14 February 2015 00:07:50 UTC