mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
release packet buffers when deleting a 0-RTT queue
This commit is contained in:
parent
ba095dd3ff
commit
9b71878d53
2 changed files with 32 additions and 6 deletions
|
@ -30,11 +30,7 @@ func (h *zeroRTTQueue) Enqueue(connID protocol.ConnectionID, p *receivedPacket)
|
||||||
if len(h.queue) >= protocol.Max0RTTQueues {
|
if len(h.queue) >= protocol.Max0RTTQueues {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
h.queue[cid] = &zeroRTTQueueEntry{timer: time.AfterFunc(protocol.Max0RTTQueueingDuration, func() {
|
h.queue[cid] = &zeroRTTQueueEntry{timer: time.AfterFunc(protocol.Max0RTTQueueingDuration, func() { h.deleteQueue(connID) })}
|
||||||
h.mutex.Lock()
|
|
||||||
delete(h.queue, cid)
|
|
||||||
h.mutex.Unlock()
|
|
||||||
})}
|
|
||||||
}
|
}
|
||||||
entry := h.queue[cid]
|
entry := h.queue[cid]
|
||||||
if len(entry.packets) >= protocol.Max0RTTQueueLen {
|
if len(entry.packets) >= protocol.Max0RTTQueueLen {
|
||||||
|
@ -59,3 +55,17 @@ func (h *zeroRTTQueue) Dequeue(connID protocol.ConnectionID) *receivedPacket {
|
||||||
}
|
}
|
||||||
return p
|
return p
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (h *zeroRTTQueue) deleteQueue(connID protocol.ConnectionID) {
|
||||||
|
h.mutex.Lock()
|
||||||
|
defer h.mutex.Unlock()
|
||||||
|
|
||||||
|
entry, ok := h.queue[string(connID)]
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for _, p := range entry.packets {
|
||||||
|
p.buffer.Release()
|
||||||
|
}
|
||||||
|
delete(h.queue, string(connID))
|
||||||
|
}
|
||||||
|
|
|
@ -17,6 +17,22 @@ var _ = Describe("0-RTT queue", func() {
|
||||||
q = newZeroRTTQueue()
|
q = newZeroRTTQueue()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
AfterEach(func() {
|
||||||
|
// dequeue all packets to make sure the timers are stopped
|
||||||
|
q.mutex.Lock()
|
||||||
|
for connID := range q.queue {
|
||||||
|
for {
|
||||||
|
q.mutex.Unlock()
|
||||||
|
p := q.Dequeue(protocol.ConnectionID(connID))
|
||||||
|
q.mutex.Lock()
|
||||||
|
if p != nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
q.mutex.Unlock()
|
||||||
|
})
|
||||||
|
|
||||||
It("stores a 0-RTT packet", func() {
|
It("stores a 0-RTT packet", func() {
|
||||||
connID := protocol.ConnectionID{0xde, 0xad, 0xbe, 0xef}
|
connID := protocol.ConnectionID{0xde, 0xad, 0xbe, 0xef}
|
||||||
p := &receivedPacket{data: []byte("foobar")}
|
p := &receivedPacket{data: []byte("foobar")}
|
||||||
|
@ -89,7 +105,7 @@ var _ = Describe("0-RTT queue", func() {
|
||||||
|
|
||||||
It("deletes packets if they aren't dequeued after a short while", func() {
|
It("deletes packets if they aren't dequeued after a short while", func() {
|
||||||
connID := protocol.ConnectionID{0xde, 0xad, 0xbe, 0xef}
|
connID := protocol.ConnectionID{0xde, 0xad, 0xbe, 0xef}
|
||||||
p := &receivedPacket{data: []byte("foobar")}
|
p := &receivedPacket{data: []byte("foobar"), buffer: getPacketBuffer()}
|
||||||
q.Enqueue(connID, p)
|
q.Enqueue(connID, p)
|
||||||
time.Sleep(protocol.Max0RTTQueueingDuration * 3 / 2)
|
time.Sleep(protocol.Max0RTTQueueingDuration * 3 / 2)
|
||||||
Expect(q.Dequeue(connID)).To(BeNil())
|
Expect(q.Dequeue(connID)).To(BeNil())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue