| 123456789101112131415161718192021222324252627 |
- package protocol
- import (
- "time"
- "github.com/v2ray/v2ray-core/common/dice"
- "github.com/v2ray/v2ray-core/common/serial"
- )
- type Timestamp int64
- func (this Timestamp) Bytes(b []byte) []byte {
- return serial.Int64ToBytes(int64(this), 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)
- }
- }
|