Skip to content

Commit

Permalink
packetsDiscardedOnSend and bytesDiscardedOnSend for RTCSentRTPStreamS…
Browse files Browse the repository at this point in the history
…tats
  • Loading branch information
lennart-csio committed May 10, 2017
1 parent 25551df commit 4a9682e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions webrtc-stats.html
Expand Up @@ -1038,7 +1038,9 @@ <h3>
<div>
<pre class="idl">dictionary RTCSentRTPStreamStats : RTCRTPStreamStats {
unsigned long packetsSent;
unsigned long packetsDiscardedOnSend;
unsigned long long bytesSent;
unsigned long long bytesDiscardedOnSend;
};</pre>
<section>
<h2>
Expand All @@ -1056,6 +1058,16 @@ <h2>
[[!RFC3550]] section 6.4.1.
</p>
</dd>
<dt>
<dfn><code>packetsDiscardedOnSend</code></dfn> of type <span class="idlMemberType">
<a>unsigned long</a></span>
</dt>
<dd>
<p>
Total number of RTP packets for this SSRC that have been discarded due to socket
errors, i.e. a socket error occured when handing the byttes to the socket.
</p>
</dd>
<dt>
<dfn><code>bytesSent</code></dfn> of type <span class="idlMemberType"><a>unsigned
long long</a></span>
Expand All @@ -1066,6 +1078,16 @@ <h2>
section 6.4.1.
</p>
</dd>
<dt>
<dfn><code>bytesDiscardedOnSend</code></dfn> of type <span class="idlMemberType">
<a>unsigned long long</a></span>
</dt>
<dd>
<p>
Total number of bytes for this SSRC that have been discarded due to socket
errors, i.e. a socket error occured when handing the packet to the socket.
</p>
</dd>
</dl>
</section>
</div>
Expand Down

0 comments on commit 4a9682e

Please sign in to comment.