Files
gortsplib/conn_stats.go
Alessandro Ros ec81d388d1 switch to v5 (#890)
* switch from v4 to v5

* remove deprecated entities

* remove "2" suffix from entities

* rename TransportProtocol into Protocol
2025-09-16 11:46:52 +02:00

10 lines
159 B
Go

package gortsplib
// ConnStats are connection statistics.
type ConnStats struct {
// received bytes
BytesReceived uint64
// sent bytes
BytesSent uint64
}