Files
lti-api/vendor/github.com/valyala/fasthttp/tcp.go
T
GitLab Deploy Bot bb60e987e5 .
2025-10-21 23:45:13 +07:00

13 lines
158 B
Go

//go:build !windows
package fasthttp
import (
"errors"
"syscall"
)
func isConnectionReset(err error) bool {
return errors.Is(err, syscall.ECONNRESET)
}