1 2 3 4 5 6 7 8 9
package wait import ( "golang.org/x/sys/windows" ) func isConnRefusedErr(err error) bool { return err == windows.WSAECONNREFUSED }