Skip to content

Commit

Permalink
RTCOutboundRtpStreamStats.HeaderBytesSent - add
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishwillee committed Jan 20, 2025
1 parent 58e06f4 commit f264191
Showing 1 changed file with 26 additions and 0 deletions.
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}}

0 comments on commit f264191

Please sign in to comment.