mirror of https://github.com/v2ray/v2ray-core
parent
c5e5a7265d
commit
443e9d4725
|
@ -15,10 +15,10 @@ import (
|
||||||
|
|
||||||
func hashTimestamp(t protocol.Timestamp) []byte {
|
func hashTimestamp(t protocol.Timestamp) []byte {
|
||||||
bytes := make([]byte, 0, 32)
|
bytes := make([]byte, 0, 32)
|
||||||
t.Bytes(bytes)
|
bytes = t.Bytes(bytes)
|
||||||
t.Bytes(bytes)
|
bytes = t.Bytes(bytes)
|
||||||
t.Bytes(bytes)
|
bytes = t.Bytes(bytes)
|
||||||
t.Bytes(bytes)
|
bytes = t.Bytes(bytes)
|
||||||
return bytes
|
return bytes
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue