time.go 180 B

1234567891011
  1. package protocol
  2. import (
  3. "github.com/v2ray/v2ray-core/common/serial"
  4. )
  5. type Timestamp int64
  6. func (this Timestamp) Bytes() []byte {
  7. return serial.Int64Literal(this).Bytes()
  8. }