mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-05 01:38:24 -05:00
24 lines
299 B
Go
24 lines
299 B
Go
// +build !confonly
|
|
|
|
package quic
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/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) // nolint: staticcheck
|
|
}
|