mirror of
https://github.com/aler9/gortsplib
synced 2025-09-27 03:25:52 +08:00

* switch from v4 to v5 * remove deprecated entities * remove "2" suffix from entities * rename TransportProtocol into Protocol
10 lines
159 B
Go
10 lines
159 B
Go
package gortsplib
|
|
|
|
// ConnStats are connection statistics.
|
|
type ConnStats struct {
|
|
// received bytes
|
|
BytesReceived uint64
|
|
// sent bytes
|
|
BytesSent uint64
|
|
}
|