mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
expose crypto/tls errors on the TransportError (#4015)
This commit is contained in:
parent
f7f4872bb9
commit
501cc21c4b
8 changed files with 40 additions and 13 deletions
|
@ -664,8 +664,9 @@ func (h *cryptoSetup) ConnectionState() ConnectionState {
|
|||
}
|
||||
|
||||
func wrapError(err error) error {
|
||||
// alert 80 is an internal error
|
||||
if alertErr := qtls.AlertError(0); errors.As(err, &alertErr) && alertErr != 80 {
|
||||
return qerr.NewLocalCryptoError(uint8(alertErr), err.Error())
|
||||
return qerr.NewLocalCryptoError(uint8(alertErr), err)
|
||||
}
|
||||
return &qerr.TransportError{ErrorCode: qerr.InternalError, ErrorMessage: err.Error()}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue