mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
errors.Is is supposed to used for equality of errors, not for type assertions. That's what errors.As is there for.
14 lines
597 B
Go
14 lines
597 B
Go
// +build go1.16
|
|
|
|
package qerr
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func (e *TransportError) Is(target error) bool { return target == net.ErrClosed }
|
|
func (e *ApplicationError) Is(target error) bool { return target == net.ErrClosed }
|
|
func (e *IdleTimeoutError) Is(target error) bool { return target == net.ErrClosed }
|
|
func (e *HandshakeTimeoutError) Is(target error) bool { return target == net.ErrClosed }
|
|
func (e *VersionNegotiationError) Is(target error) bool { return target == net.ErrClosed }
|
|
func (e *StatelessResetError) Is(target error) bool { return target == net.ErrClosed }
|