mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-10-04 23:32:44 +08:00

rtpPacketsReceived, rtpPacketsSent, rtpPacketsLost, rtpPacketsJitter, rtcpPacketsReceived, rtcpPacketsSent
14 lines
295 B
Go
14 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
|
|
}
|