From f26419114075db1f7552e5081aefff56ab851300 Mon Sep 17 00:00:00 2001 From: Hamish Willee Date: Mon, 20 Jan 2025 18:00:50 +1100 Subject: [PATCH] RTCOutboundRtpStreamStats.HeaderBytesSent - add --- .../headerbytessent/index.md | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 files/en-us/web/api/rtcoutboundrtpstreamstats/headerbytessent/index.md diff --git a/files/en-us/web/api/rtcoutboundrtpstreamstats/headerbytessent/index.md b/files/en-us/web/api/rtcoutboundrtpstreamstats/headerbytessent/index.md new file mode 100644 index 000000000000000..3700cca33dcddff --- /dev/null +++ b/files/en-us/web/api/rtcoutboundrtpstreamstats/headerbytessent/index.md @@ -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}}