11 lines
150 B
Go
11 lines
150 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package wait
|
|
|
|
import "syscall"
|
|
|
|
func isConnRefusedErr(err error) bool {
|
|
return err == syscall.ECONNREFUSED
|
|
}
|