mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
25 lines
620 B
Go
25 lines
620 B
Go
package congestion
|
|
|
|
import (
|
|
"math"
|
|
"time"
|
|
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
)
|
|
|
|
// Bandwidth of a connection
|
|
type Bandwidth uint64
|
|
|
|
const infBandwidth Bandwidth = math.MaxUint64
|
|
|
|
const (
|
|
// BitsPerSecond is 1 bit per second
|
|
BitsPerSecond Bandwidth = 1
|
|
// BytesPerSecond is 1 byte per second
|
|
BytesPerSecond = 8 * BitsPerSecond
|
|
)
|
|
|
|
// BandwidthFromDelta calculates the bandwidth from a number of bytes and a time delta
|
|
func BandwidthFromDelta(bytes protocol.ByteCount, delta time.Duration) Bandwidth {
|
|
return Bandwidth(bytes) * Bandwidth(time.Second) / Bandwidth(delta) * BytesPerSecond
|
|
}
|