diff --git a/webrtc.html b/webrtc.html index b448f2aad..83fec1e08 100644 --- a/webrtc.html +++ b/webrtc.html @@ -4367,7 +4367,7 @@

RTCRtpSender Interface

interface RTCRtpSender {
     readonly        attribute MediaStreamTrack? track;
-    readonly        attribute RTCDtlsTransport  transport;
+    readonly        attribute RTCDtlsTransport?  transport;
     readonly        attribute RTCDtlsTransport? rtcpTransport;
     static RTCRtpCapabilities getCapabilities (DOMString kind);
     Promise<void>             setParameters (optional RTCRtpParameters parameters);
@@ -4386,7 +4386,7 @@ 

Attributes

associated with this RTCRtpSender object.

transport of type RTCDtlsTransport, readonly
+ "idlAttrType">RTCDtlsTransport, readonly, nullable

The transport attribute is the transport over which media from track is sent in the form of RTP @@ -5064,7 +5064,7 @@

RTCRtpReceiver Interface

interface RTCRtpReceiver {
     readonly        attribute MediaStreamTrack  track;
-    readonly        attribute RTCDtlsTransport  transport;
+    readonly        attribute RTCDtlsTransport?  transport;
     readonly        attribute RTCDtlsTransport? rtcpTransport;
     static RTCRtpCapabilities          getCapabilities (DOMString kind);
     RTCRtpParameters                   getParameters ();
@@ -5082,7 +5082,7 @@ 

Attributes

object.

transport of type RTCDtlsTransport, readonly
+ "idlAttrType">RTCDtlsTransport, readonly, nullable

The transport attribute is the transport over which media for the receiver's track @@ -5434,7 +5434,10 @@

RTCDtlsTransport Interface

SCTP packets sent and received by data channels. In particular, DTLS adds security to an underlying transport, and the RTCDtlsTransport interface allows access to information - about the underlying transport and the security added.

+ about the underlying transport and the security added. + RTCDtlsTransport objects are constructed + as a result of calls to setLocalDescription() + and setRemoteDescription().

interface RTCDtlsTransport {
     readonly        attribute RTCIceTransport       transport;
@@ -5540,7 +5543,9 @@ 

RTCIceTransport Interface

application access to information about the ICE transport over which packets are sent and received. In particular, ICE manages peer-to-peer connections which involve state which the application may want to - access.

+ access. RTCIceTransport objects are constructed + as a result of calls to setLocalDescription() + and setRemoteDescription().

interface RTCIceTransport {
     readonly        attribute RTCIceRole           role;