Lines Matching refs:network
15 // testableNetwork reports whether network is testable on the current
17 func testableNetwork(network string) bool {
18 ss := strings.Split(network, ":")
67 // testableAddress reports whether address of network is testable on
69 func testableAddress(network, address string) bool {
70 switch ss := strings.Split(network, ":"); ss[0] {
82 func testableListenArgs(network, address, client string) bool {
83 if !testableNetwork(network) || !testableAddress(network, address) {
89 switch ss := strings.Split(network, ":"); ss[0] {
141 if !supportsIPv4map() && supportsIPv4() && (network == "tcp" || network == "udp" || network == "ip") && wildcard {
155 func condFatalf(t *testing.T, network string, format string, args ...interface{}) {
161 if network == "file+net" {