mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
add a message to crypto errors
The string representation varies depending on the message: * if there's no message, the TLS alert is used * if there's a message, it is used instead
This commit is contained in:
parent
373db3c153
commit
ae12852e4c
3 changed files with 11 additions and 5 deletions
|
@ -31,9 +31,10 @@ func TimeoutError(errorMessage string) *QuicError {
|
|||
}
|
||||
|
||||
// CryptoError create a new QuicError instance for a crypto error
|
||||
func CryptoError(tlsAlert uint8) *QuicError {
|
||||
func CryptoError(tlsAlert uint8, errorMessage string) *QuicError {
|
||||
return &QuicError{
|
||||
ErrorCode: 0x100 + ErrorCode(tlsAlert),
|
||||
ErrorCode: 0x100 + ErrorCode(tlsAlert),
|
||||
ErrorMessage: errorMessage,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue