add a sync.Pool of byte buffers with maximum packet size as cap

ref #217
This commit is contained in:
Lucas Clemente 2016-07-26 15:36:28 +02:00
parent 90aa8cfa95
commit 950e59fa3d
6 changed files with 56 additions and 4 deletions

23
buffer_pool.go Normal file
View 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)
}
}