Files
timmy-config/go/pkg/mod/github.com/valyala/fasthttp@v1.51.0/tcp_windows.go
2026-03-31 20:02:01 +00:00

11 lines
140 B
Go

package fasthttp
import (
"errors"
"syscall"
)
func isConnectionReset(err error) bool {
return errors.Is(err, syscall.WSAECONNRESET)
}