implement handling of coalesced packets

This commit is contained in:
Marten Seemann 2018-12-29 17:48:28 +07:00
parent 6ce7a204fc
commit d3ea7c0c4c
4 changed files with 205 additions and 72 deletions

View file

@ -15,6 +15,13 @@ type packetBuffer struct {
refCount int
}
// Split increases the refCount.
// It must be called when a packet buffer is used for more than one packet,
// e.g. when splitting coalesced packets.
func (b *packetBuffer) Split() {
b.refCount++
}
var bufferPool sync.Pool
func getPacketBuffer() *packetBuffer {