1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 00:06:11 -04:00
v2fly/common/protocol/time.go

23 lines
429 B
Go
Raw Normal View History

2016-02-23 16:51:08 -05:00
package protocol
import (
2016-02-25 11:14:49 -05:00
"math/rand"
2016-02-23 16:51:08 -05:00
"github.com/v2ray/v2ray-core/common/serial"
)
type Timestamp int64
func (this Timestamp) Bytes() []byte {
return serial.Int64Literal(this).Bytes()
}
2016-02-25 11:14:49 -05:00
type TimestampGenerator func() Timestamp
func NewTimestampGenerator(base Timestamp, delta int) TimestampGenerator {
return func() Timestamp {
rangeInDelta := rand.Intn(delta*2) - delta
return base + Timestamp(rangeInDelta)
}
}