veyron/runtimes/google/ipc: Make "connection refused" retriable.

This deflakes several tests which currently have races between server
startup and client startup.

Change-Id: Id2d81c103abfa25f572e991174d8c6971b21ca89
diff --git a/runtimes/google/ipc/client.go b/runtimes/google/ipc/client.go
index 5027366..7cee2e7 100644
--- a/runtimes/google/ipc/client.go
+++ b/runtimes/google/ipc/client.go
@@ -150,6 +150,11 @@
 	if strings.Contains(e, "errno") {
 		return true
 	}
+	// Connection refused is retriable.
+	if strings.Contains(e, "connection refused") {
+		return true
+	}
+
 	return false
 }