Skip to content

Commit

Permalink
fix a bug in vmess encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
DarienRaymond committed Jul 27, 2016
1 parent c5e5a72 commit 443e9d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions proxy/vmess/encoding/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 443e9d4

Please sign in to comment.