internalize ackhandler and congestion

This commit is contained in:
Marten Seemann
2018-02-01 17:22:23 +08:00
parent 94c98861d5
commit 3b82628dbe
47 changed files with 21 additions and 21 deletions

View File

@@ -0,0 +1,18 @@
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{}
var _ Clock = DefaultClock{}
// Now gets the current time
func (DefaultClock) Now() time.Time {
return time.Now()
}