mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-22 21:26:07 +03:00
24 lines
274 B
Go
24 lines
274 B
Go
|
// +build !confonly
|
||
|
|
||
|
package quic
|
||
|
|
||
|
import (
|
||
|
"sync"
|
||
|
|
||
|
"github.com/xtls/xray-core/v1/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)
|
||
|
}
|