mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-10-31 16:27:41 -04:00
23 lines
392 B
Go
23 lines
392 B
Go
package protocol
|
|
|
|
import (
|
|
"time"
|
|
|
|
"v2ray.com/core/common/dice"
|
|
)
|
|
|
|
type Timestamp int64
|
|
|
|
type TimestampGenerator func() Timestamp
|
|
|
|
func NowTime() Timestamp {
|
|
return Timestamp(time.Now().Unix())
|
|
}
|
|
|
|
func NewTimestampGenerator(base Timestamp, delta int) TimestampGenerator {
|
|
return func() Timestamp {
|
|
rangeInDelta := dice.Roll(delta*2) - delta
|
|
return base + Timestamp(rangeInDelta)
|
|
}
|
|
}
|