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

Add support for unreliability (with parameters dictionary) #76

Merged
merged 3 commits into from
Nov 14, 2018
Merged
Changes from 1 commit
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
26 changes: 25 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ <h3>Interface Definition</h3>
void start (RTCQuicParameters remoteParameters);
void stop ();
RTCQuicBidirectionalStream createBidirectionalStream ();
RTCQuicSendStream createSendStream ();
RTCQuicSendStream createSendStream (optional RTCQuicStreamParameters parameters);
attribute EventHandler onstatechange;
attribute EventHandler onerror;
attribute EventHandler onreceivestreamwithdata;
Expand Down Expand Up @@ -542,6 +542,30 @@ <h2>Dictionary <a class="idlType">RTCQuicParameters</a> Members</h2>
</section>
</div>
</section>
<section id="rtcstreamparameters*">
<h3><dfn>RTCQuicStreamParameters</dfn> Dictionary</h3>
<p>The <code>RTCQuicParameters</code> dictionary includes information
relating to QUIC stream configuration.</p>
<div>
<pre class="idl">dictionary RTCQuicStreamParameters {
bool reliable = true;
};</pre>
<section>
<h2>Dictionary <a class="idlType">RTCQuicStreamParameters</a> Members</h2>
<dl data-link-for="RTCQuicStreamParameters" data-dfn-for="RTCQuicStreamParameters" class=
"dictionary-members">
<dt><dfn><code>reliable</code></dfn> of type <span class=
"idlMemberType"><a>bool</a></span>, defaulting to
<code>true</code></dt>
<dd>
<p>Reliable, with a default of <code>true</code>. If
true, the stream will be sent reliably. If not, the
stream will be sent unreliably.</p>
</dd>
</dl>
</section>
</div>
</section>
<section>
<h3><dfn>ReceiveStreamWithDataEvent</dfn></h3>
<p>The <code><a>receivestreamwithdata</a></code> event uses the
Expand Down