mirror of
https://github.com/amnezia-vpn/amneziawg-go.git
synced 2025-04-18 15:06:54 +02:00
Feel free to revert this if you have a strong feeling about it. But so far as I can see, it adds a lot of complexity for basically no upsides.
26 lines
503 B
Go
26 lines
503 B
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/binary"
|
|
"time"
|
|
)
|
|
|
|
const TimestampSize = 12
|
|
const base = uint64(4611686018427387914)
|
|
|
|
type Timestamp [TimestampSize]byte
|
|
|
|
func TimestampNow() Timestamp {
|
|
var tai64n Timestamp
|
|
now := time.Now()
|
|
secs := base + uint64(now.Unix())
|
|
nano := uint32(now.UnixNano())
|
|
binary.BigEndian.PutUint64(tai64n[:], secs)
|
|
binary.BigEndian.PutUint32(tai64n[8:], nano)
|
|
return tai64n
|
|
}
|
|
|
|
func (t1 Timestamp) After(t2 Timestamp) bool {
|
|
return bytes.Compare(t1[:], t2[:]) > 0
|
|
}
|