Issue 183: Miscellaneous Typos

Section 2.3

[Constructor(RTCIceTransport transport)]
 interface RTCDtlsTransport : RTCStatsProvider {
 readonly attribute RTCIceTransport transport;
 readonly attribute RTCDtlsTransportState state;
 RTCDtlsParameters getLocalParameters ();
 RTCDtlsParameters? getRemoteParameters ();
 sequence getRemoteCertificates ();
 void start (RTCDtlsParameters remoteParameters);
 attribute EventHandler? onerror;
 };

[BA] Since the January 2015 Editor's draft, the stop() method and ondtlsstatechange event handlers are no longer being rendered although the text remains in the draft.  This appears to be a Respec issue. 

Section 5.3

interface RTCIceGatherer {
 };

[BA] Since RTCIceGatherer provides statistics on local candidates, this should be: 

 interface RTCIceGatherer : RTCStatsProvider {
 };

Section 13

The Statistics API enables retrieval of statistics relating to RTCRtpSender, RTCRtpReceiver, RTCDtlsTransport, RTCIceTransport and RTCSctpTransport objects.

[BA] RTCIceGatherer should also be listed as an object providing statistics. 

Section 13.3.2

localcandidate

 ICE local candidates, related to the RTCIceTransport objects. It is accessed via the RTCIceCandidateAttributes defined in [WEBRTC-STATS] Section 5.8.

[BA] Actually, ICE local candidates are related to the RTCIceGatherer objects. 

Received on Thursday, 19 March 2015 15:41:33 UTC