kon/vendor/github.com/valyala/fasthttp/tcp_windows.go
2024-07-02 16:36:04 +02:00

11 lines
140 B
Go

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