mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 10:47:48 -05:00
28 lines
512 B
Go
28 lines
512 B
Go
package protocol
|
|
|
|
import (
|
|
"time"
|
|
|
|
"v2ray.com/core/common/dice"
|
|
"v2ray.com/core/common/serial"
|
|
)
|
|
|
|
type Timestamp int64
|
|
|
|
func (v Timestamp) Bytes(b []byte) []byte {
|
|
return serial.Int64ToBytes(int64(v), b)
|
|
}
|
|
|
|
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)
|
|
}
|
|
}
|