Merge pull request #2807 from lucas-clemente/fix-post-handshake-message-error-handling

fix error handling when receiving post handshake messages
This commit is contained in:
Marten Seemann 2020-10-06 20:23:53 +07:00 committed by GitHub
commit 471e82f883
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -499,7 +499,11 @@ func (h *cryptoSetup) handlePostHandshakeMessage() {
}()
if err := h.conn.HandlePostHandshakeMessage(); err != nil {
h.onError(<-alertChan, err.Error())
select {
case <-h.closeChan:
case alert := <-alertChan:
h.onError(alert, err.Error())
}
}
}