1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-18 01:46:06 -04:00
v2fly/vendor/github.com/lucas-clemente/quic-go/buffer_pool.go
2018-11-21 10:52:07 +01:00

28 lines
496 B
Go

package quic
import (
"sync"
"v2ray.com/core/common/bytespool"
"github.com/lucas-clemente/quic-go/internal/protocol"
)
var bufferPool *sync.Pool
func getPacketBuffer() *[]byte {
b := bufferPool.Get().([]byte)
return &b
}
func putPacketBuffer(buf *[]byte) {
if cap(*buf) < int(protocol.MaxReceivePacketSize) {
panic("putPacketBuffer called with packet of wrong size!")
}
bufferPool.Put(*buf)
}
func init() {
bufferPool = bytespool.GetPool(int32(protocol.MaxReceivePacketSize))
}