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:
Luke Tucker 2020-07-07 23:48:12 -04:00
parent 84bf12bfda
commit 3c1e597858
2 changed files with 31 additions and 1 deletions

View file

@ -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 {