1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-27 01:45:23 +00:00

fix a bug in vmess encoding

This commit is contained in:
v2ray 2016-07-27 16:36:46 +02:00
parent c5e5a7265d
commit 443e9d4725
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -15,10 +15,10 @@ import (
func hashTimestamp(t protocol.Timestamp) []byte {
bytes := make([]byte, 0, 32)
t.Bytes(bytes)
t.Bytes(bytes)
t.Bytes(bytes)
t.Bytes(bytes)
bytes = t.Bytes(bytes)
bytes = t.Bytes(bytes)
bytes = t.Bytes(bytes)
bytes = t.Bytes(bytes)
return bytes
}