aboutsummaryrefslogtreecommitdiff
path: root/tcp_windows.go
blob: d71950b949cb2a76f000c5df31d34baff70dfbe3 (plain)
1
2
3
4
5
6
7
8
9
10
package fasthttp

import (
	"errors"
	"syscall"
)

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