- From: Bernard Aboba <Bernard.Aboba@microsoft.com>
- Date: Mon, 17 Mar 2014 23:16:43 +0000
- To: "public-ortc@w3.org" <public-ortc@w3.org>
Received on Monday, 17 March 2014 23:17:13 UTC
2.2 Operation
A RTCDtlsTransport instance is optionally constructed from an RTCIceTransport object or an RTCIceTransport is automatically constructed.
[BA] Shouldn't this be "or an RTCDtlsTransport is automatically constructed"?
2.3 Interface Definition
[Constructor(optional RTCIceTransport transport)]
interface RTCDtlsTransport {
readonly attribute RTCIceTransport transport;
readonly attribute RTCDtlsTransportState state;
RTCDtlsParameters getLocalParameters ();
RTCDtlsParameters? getRemoteParameters ();
void start (RTCDtlsParameters remoteParameters);
void stop ();
attribute EventHandler? onstatechange;
};
[BA] Is an RTCIceTransport object really a readonly attribute? If it is not supplied in the constructor, how is it subsequently provided?
Received on Monday, 17 March 2014 23:17:13 UTC