Files
quic-go/internal/congestion/clock.go
2025-11-14 04:04:40 +03:00

21 lines
398 B
Go

package congestion
import (
"git.geeks-team.ru/gr1ffon/quic-go/internal/monotime"
)
// A Clock returns the current time
type Clock interface {
Now() monotime.Time
}
// DefaultClock implements the Clock interface using the Go stdlib clock.
type DefaultClock struct{}
var _ Clock = DefaultClock{}
// Now gets the current time
func (DefaultClock) Now() monotime.Time {
return monotime.Now()
}