mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-20 02:00:05 -08:00
rtpPacketsReceived, rtpPacketsSent, rtpPacketsLost, rtpPacketsJitter, rtcpPacketsReceived, rtcpPacketsSent
13 lines
295 B
Go
13 lines
295 B
Go
package webrtc
|
|
|
|
// Stats are WebRTC statistics.
|
|
type Stats struct {
|
|
BytesReceived uint64
|
|
BytesSent uint64
|
|
RTPPacketsReceived uint64
|
|
RTPPacketsSent uint64
|
|
RTPPacketsLost uint64
|
|
RTPPacketsJitter float64
|
|
RTCPPacketsReceived uint64
|
|
RTCPPacketsSent uint64
|
|
}
|