소스 검색

remove unnecessary memory allocation in vmess

v2ray 9 년 전
부모
커밋
7881330644
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      proxy/vmess/protocol/vmess.go

+ 3 - 1
proxy/vmess/protocol/vmess.go

@@ -180,7 +180,9 @@ func (this *VMessRequest) ToBytes(timestampGenerator RandomTimestampGenerator, b
 	idHash := IDHash(this.User.AnyValidID().Bytes())
 	idHash.Write(timestamp.Bytes())
 
-	buffer.Append(idHash.Sum(nil))
+	hashStart := buffer.Len()
+	buffer.Slice(0, hashStart+16)
+	idHash.Sum(buffer.Value[hashStart:hashStart])
 
 	encryptionBegin := buffer.Len()