mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
fix availability signaling of the send queue (#3597)
This commit is contained in:
parent
e496120c76
commit
af30cef57c
2 changed files with 49 additions and 0 deletions
|
@ -36,6 +36,13 @@ func newSendQueue(conn sendConn) sender {
|
|||
func (h *sendQueue) Send(p *packetBuffer) {
|
||||
select {
|
||||
case h.queue <- p:
|
||||
// clear available channel if we've reached capacity
|
||||
if len(h.queue) == sendQueueCapacity {
|
||||
select {
|
||||
case <-h.available:
|
||||
default:
|
||||
}
|
||||
}
|
||||
case <-h.runStopped:
|
||||
default:
|
||||
panic("sendQueue.Send would have blocked")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue