mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
include the error code in the string for CRYPTO_ERRORs
This commit is contained in:
parent
7999b7699a
commit
77f7476bf7
4 changed files with 10 additions and 10 deletions
|
@ -85,7 +85,7 @@ func (e ErrorCode) String() string {
|
|||
return "AEAD_LIMIT_REACHED"
|
||||
default:
|
||||
if e.isCryptoError() {
|
||||
return "CRYPTO_ERROR"
|
||||
return fmt.Sprintf("CRYPTO_ERROR (%#x)", uint16(e))
|
||||
}
|
||||
return fmt.Sprintf("unknown error code: %#x", uint16(e))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue