mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-12 20:03:38 +00:00
21 lines
367 B
Go
21 lines
367 B
Go
package congestion
|
|
|
|
import "time"
|
|
|
|
// A Clock returns the current time
|
|
type Clock interface {
|
|
Now() time.Time
|
|
}
|
|
|
|
// DefaultClock implements the Clock interface using the Go stdlib clock.
|
|
type DefaultClock struct {
|
|
TimeFunc func() time.Time
|
|
}
|
|
|
|
var _ Clock = DefaultClock{}
|
|
|
|
// Now gets the current time
|
|
func (c DefaultClock) Now() time.Time {
|
|
return c.TimeFunc()
|
|
}
|