mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
implement handling of coalesced packets
This commit is contained in:
parent
6ce7a204fc
commit
d3ea7c0c4c
4 changed files with 205 additions and 72 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue