1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 10:15:23 +00:00

fully allocate buffer pools

This commit is contained in:
v2ray 2016-07-15 15:17:06 +02:00
parent 9e8ed30052
commit 33e0cfe233
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -16,7 +16,7 @@ func NewBufferPool(bufferSize, poolSize int) *BufferPool {
New: func() interface{} { return make([]byte, bufferSize) },
},
}
for i := 0; i < poolSize/2; i++ {
for i := 0; i < poolSize; i++ {
pool.chain <- make([]byte, bufferSize)
}
return pool