mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add a sync.Pool of byte buffers with maximum packet size as cap
ref #217
This commit is contained in:
parent
90aa8cfa95
commit
950e59fa3d
6 changed files with 56 additions and 4 deletions
23
buffer_pool.go
Normal file
23
buffer_pool.go
Normal file
|
@ -0,0 +1,23 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"sync"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/protocol"
|
||||
)
|
||||
|
||||
var bufferPool sync.Pool
|
||||
|
||||
func getPacketBuffer() []byte {
|
||||
return bufferPool.Get().([]byte)
|
||||
}
|
||||
|
||||
func putPacketBuffer(buf []byte) {
|
||||
bufferPool.Put(buf[:0])
|
||||
}
|
||||
|
||||
func init() {
|
||||
bufferPool.New = func() interface{} {
|
||||
return make([]byte, 0, protocol.MaxPacketSize)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue