Files
fasthttp/tcp_windows.go
T
2023-11-08 23:18:13 +01:00

11 lines
140 B
Go

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