mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
use application-specific CONNECTION_CLOSE for application errors
This commit is contained in:
parent
914193cc9d
commit
a472ac4731
4 changed files with 25 additions and 8 deletions
|
@ -39,6 +39,7 @@ func CryptoError(tlsAlert uint8, errorMessage string) *QuicError {
|
|||
}
|
||||
}
|
||||
|
||||
// ApplicationError creates a new QuicError instance for an application error
|
||||
func ApplicationError(errorCode ErrorCode, errorMessage string) *QuicError {
|
||||
return &QuicError{
|
||||
ErrorCode: errorCode,
|
||||
|
@ -65,6 +66,11 @@ func (e *QuicError) IsCryptoError() bool {
|
|||
return e.ErrorCode.isCryptoError()
|
||||
}
|
||||
|
||||
// IsApplicationError says if this error is an application error
|
||||
func (e *QuicError) IsApplicationError() bool {
|
||||
return e.isApplicationError
|
||||
}
|
||||
|
||||
// Temporary says if the error is temporary.
|
||||
func (e *QuicError) Temporary() bool {
|
||||
return false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue