forked from mdn/content
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RTCOutboundRtpStreamStats.HeaderBytesSent - add
- Loading branch information
1 parent
58e06f4
commit f264191
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
files/en-us/web/api/rtcoutboundrtpstreamstats/headerbytessent/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
title: "RTCOutboundRtpStreamStats: headerBytesSent property" | ||
short-title: headerBytesSent | ||
slug: Web/API/RTCOutboundRtpStreamStats/headerBytesSent | ||
page-type: web-api-instance-property | ||
browser-compat: api.RTCStatsReport.type_outbound-rtp.headerBytesSent | ||
--- | ||
|
||
{{APIRef("WebRTC")}} | ||
|
||
The **`headerBytesSent`** property of the {{domxref("RTCOutboundRtpStreamStats")}} dictionary indicates the total number of RTP header and padding bytes sent for this SSRC. | ||
|
||
The value does not include the bytes for transport layer headers such as IP or UDP. | ||
Note that the total number of bytes sent as payload over the transport is equal to: `headerBytesSent` + {{domxref("RTCOutboundRtpStreamStats.bytesSent","bytesSent")}}. | ||
|
||
## Value | ||
|
||
A positive integer. | ||
|
||
## Specifications | ||
|
||
{{Specifications}} | ||
|
||
## Browser compatibility | ||
|
||
{{Compat}} |