Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

transports can be null #666

Merged
merged 8 commits into from
Jun 2, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions webrtc.html
Original file line number Diff line number Diff line change
Expand Up @@ -4367,7 +4367,7 @@ <h3>RTCRtpSender Interface</h3>
<div>
<pre class="idl">interface RTCRtpSender {
readonly attribute MediaStreamTrack? track;
readonly attribute RTCDtlsTransport transport;
readonly attribute RTCDtlsTransport? transport;
readonly attribute RTCDtlsTransport? rtcpTransport;
static RTCRtpCapabilities getCapabilities (DOMString kind);
Promise&lt;void&gt; setParameters (optional RTCRtpParameters parameters);
Expand All @@ -4386,7 +4386,7 @@ <h2>Attributes</h2>
associated with this <code><a>RTCRtpSender</a></code> object.</p>
</dd>
<dt><dfn><code>transport</code></dfn> of type <span class=
"idlAttrType"><a>RTCDtlsTransport</a></span>, readonly</dt>
"idlAttrType"><a>RTCDtlsTransport</a></span>, readonly, nullable</dt>
<dd>
<p>The <code>transport</code> attribute is the transport over
which media from <code>track</code> is sent in the form of RTP
Expand Down Expand Up @@ -5064,7 +5064,7 @@ <h3>RTCRtpReceiver Interface</h3>
<div>
<pre class="idl">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 ();
Expand All @@ -5082,7 +5082,7 @@ <h2>Attributes</h2>
object.</p>
</dd>
<dt><code>transport</code> of type <span class=
"idlAttrType"><a>RTCDtlsTransport</a></span>, readonly</dt>
"idlAttrType"><a>RTCDtlsTransport</a></span>, readonly, nullable</dt>
<dd>
<p>The <dfn><code>transport</code></dfn> attribute is the
transport over which media for the receiver's <code>track</code>
Expand Down Expand Up @@ -5434,7 +5434,10 @@ <h3>RTCDtlsTransport Interface</h3>
SCTP packets sent and received by data channels. In particular, DTLS adds
security to an underlying transport, and the
<code>RTCDtlsTransport</code> interface allows access to information
about the underlying transport and the security added.</p>
about the underlying transport and the security added.
<code><a>RTCDtlsTransport</a></code> objects are constructed
as a result of calls to <code>setLocalDescription()</code>
and <code>setRemoteDescription()</code>.</p>
<div>
<pre class="idl">interface RTCDtlsTransport {
readonly attribute RTCIceTransport transport;
Expand Down Expand Up @@ -5540,7 +5543,9 @@ <h3>RTCIceTransport Interface</h3>
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.</p>
access. <code><a>RTCIceTransport</a></code> objects are constructed
as a result of calls to <code>setLocalDescription()</code>
and <code>setRemoteDescription()</code>.</p>
<div>
<pre class="idl">interface RTCIceTransport {
readonly attribute RTCIceRole role;
Expand Down