summaryrefslogtreecommitdiff
path: root/tai64.go
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2018-02-11 19:25:33 +0100
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2018-02-11 19:25:33 +0100
commit1cf23c000540bac53324cffd864506c92077bf94 (patch)
tree94c07d42e22f6da692a7df3a0fab90105b012ba6 /tai64.go
parent743364f647e8486d81a96ce8749d818b05668951 (diff)
downloadwireguard-go-1cf23c000540bac53324cffd864506c92077bf94.tar.gz
wireguard-go-1cf23c000540bac53324cffd864506c92077bf94.zip
Moved tai64n into sub-package
Diffstat (limited to 'tai64.go')
-rw-r--r--tai64.go28
1 files changed, 0 insertions, 28 deletions
diff --git a/tai64.go b/tai64.go
deleted file mode 100644
index 2299a37..0000000
--- a/tai64.go
+++ /dev/null
@@ -1,28 +0,0 @@
-package main
-
-import (
- "bytes"
- "encoding/binary"
- "time"
-)
-
-const (
- TAI64NBase = uint64(4611686018427387914)
- TAI64NSize = 12
-)
-
-type TAI64N [TAI64NSize]byte
-
-func Timestamp() TAI64N {
- var tai64n TAI64N
- now := time.Now()
- secs := TAI64NBase + uint64(now.Unix())
- nano := uint32(now.UnixNano())
- binary.BigEndian.PutUint64(tai64n[:], secs)
- binary.BigEndian.PutUint32(tai64n[8:], nano)
- return tai64n
-}
-
-func (t1 *TAI64N) After(t2 TAI64N) bool {
- return bytes.Compare(t1[:], t2[:]) > 0
-}