Issue 293: Remote peer ICE-lite implementation

As noted in JSEP Section 5.1.2, "the remote endpoint may use a Lite implementation; implementations MUST properly handle remote endpoints which do ICE-Lite."

WebRTC 1.0 handles this by allowing an a=ice-lite line in a Remote Description. How is the equivalent functionality supported in ORTC API?

A potential approach:

partial dictionary RTCIceParameters {
boolean? iceLite;
};

iceLite of type boolean, nullable
Whether ICE lite is supported (true) or not (false). If unset, ICE lite is not supported. Since browsers support full ICE, getLocalParameters().iceLite must not be set. This attribute is only set in remote parameters signaled by a remote peer (such as a gateway) that only supports ICE lite.

Received on Friday, 4 December 2015 16:56:18 UTC