Files
fasthttp/tcp.go
T
2023-11-08 23:18:13 +01: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)
}