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