2017-12-12 02:51:45 +00:00
|
|
|
package congestion
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2018-01-03 19:19:49 +00:00
|
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
2017-12-12 02:51:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Bandwidth of a connection
|
|
|
|
type Bandwidth uint64
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|