1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-30 11:05:24 +00:00
v2fly/common/protocol/time.go

23 lines
392 B
Go
Raw Normal View History

2016-02-23 21:51:08 +00:00
package protocol
import (
2016-02-25 20:50:10 +00:00
"time"
2016-02-25 16:14:49 +00:00
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common/dice"
2016-02-23 21:51:08 +00:00
)
type Timestamp int64
2016-02-25 16:14:49 +00:00
type TimestampGenerator func() Timestamp
2016-02-25 20:50:10 +00:00
func NowTime() Timestamp {
return Timestamp(time.Now().Unix())
}
2016-02-25 16:14:49 +00:00
func NewTimestampGenerator(base Timestamp, delta int) TimestampGenerator {
return func() Timestamp {
2016-06-29 21:53:50 +00:00
rangeInDelta := dice.Roll(delta*2) - delta
2016-02-25 16:14:49 +00:00
return base + Timestamp(rangeInDelta)
}
}