mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 18:57:44 -05:00
22 lines
239 B
Go
22 lines
239 B
Go
|
package quic
|
||
|
|
||
|
import (
|
||
|
"sync"
|
||
|
|
||
|
"v2ray.com/core/common/bytespool"
|
||
|
)
|
||
|
|
||
|
var pool *sync.Pool
|
||
|
|
||
|
func init() {
|
||
|
pool = bytespool.GetPool(2048)
|
||
|
}
|
||
|
|
||
|
func getBuffer() []byte {
|
||
|
return pool.Get().([]byte)
|
||
|
}
|
||
|
|
||
|
func putBuffer(p []byte) {
|
||
|
pool.Put(p)
|
||
|
}
|