mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
18 lines
399 B
Go
18 lines
399 B
Go
package exceptions
|
|
|
|
import "net"
|
|
|
|
type TimeoutError interface {
|
|
Timeout() bool
|
|
}
|
|
|
|
func IsTimeout(err error) bool {
|
|
if netErr, isNetErr := err.(net.Error); isNetErr {
|
|
//goland:noinspection GoDeprecation
|
|
//nolint:staticcheck
|
|
return netErr.Temporary() && netErr.Timeout()
|
|
} else if timeoutErr, isTimeout := Cast[TimeoutError](err); isTimeout {
|
|
return timeoutErr.Timeout()
|
|
}
|
|
return false
|
|
}
|