mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
don't block sendQueue.Send() if the runloop already exited.
This can lead to a deadlock where session.shutdown() never exits because it is blocked on a Send() but the sendQueue has exited due to a write error.
This commit is contained in:
parent
84bf12bfda
commit
3c1e597858
2 changed files with 31 additions and 1 deletions
|
@ -18,7 +18,10 @@ func newSendQueue(conn connection) *sendQueue {
|
|||
}
|
||||
|
||||
func (h *sendQueue) Send(p *packetBuffer) {
|
||||
h.queue <- p
|
||||
select {
|
||||
case h.queue <- p:
|
||||
case <-h.runStopped:
|
||||
}
|
||||
}
|
||||
|
||||
func (h *sendQueue) Run() error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue