mirror of
https://github.com/aler9/gortsplib
synced 2025-09-27 03:25:52 +08:00
15 lines
269 B
Go
15 lines
269 B
Go
package gortsplib
|
|
|
|
// StatsConn are connection statistics.
|
|
//
|
|
// Deprecated: renamed into ConnStats.
|
|
type StatsConn = ConnStats
|
|
|
|
// ConnStats are connection statistics.
|
|
type ConnStats struct {
|
|
// received bytes
|
|
BytesReceived uint64
|
|
// sent bytes
|
|
BytesSent uint64
|
|
}
|