net.DNSError.Err (field)

51 uses

	net (current package)
		cgo_unix.go#L91: 		return 0, &DNSError{Err: "unknown network", Name: network + "/" + service}
		cgo_unix.go#L108: 		return 0, &DNSError{Err: err.Error(), Name: network + "/" + service}
		cgo_unix.go#L127: 		return 0, &DNSError{Err: err.Error(), Name: network + "/" + service, IsTemporary: isTemporary}
		cgo_unix.go#L143: 	return 0, &DNSError{Err: "unknown port", Name: network + "/" + service}
		cgo_unix.go#L163: 		return nil, &DNSError{Err: err.Error(), Name: name}
		cgo_unix.go#L190: 		return nil, &DNSError{Err: err.Error(), Name: name, IsNotFound: isErrorNoSuchHost, IsTemporary: isTemporary}
		cgo_unix.go#L235: 		return nil, &DNSError{Err: "invalid address", Name: addr}
		cgo_unix.go#L239: 		return nil, &DNSError{Err: "invalid address " + ip.String(), Name: addr}
		cgo_unix.go#L275: 		return nil, &DNSError{Err: err.Error(), Name: addr, IsTemporary: isTemporary, IsNotFound: isErrorNoSuchHost}
		dnsclient.go#L32: 		return "", &DNSError{Err: "unrecognized address", Name: addr}
		dnsclient_unix.go#L280: 					Err:    err.Error(),
		dnsclient_unix.go#L298: 					Err:    err.Error(),
		dnsclient_unix.go#L321: 				Err:    err.Error(),
		dnsclient_unix.go#L431: 		return dnsmessage.Parser{}, "", &DNSError{Err: errNoSuchHost.Error(), Name: name, IsNotFound: true}
		dnsclient_unix.go#L559: 			return nil, &DNSError{Err: errNoSuchHost.Error(), Name: name, IsNotFound: true}
		dnsclient_unix.go#L610: 			return nil, dnsmessage.Name{}, &DNSError{Err: errNoSuchHost.Error(), Name: name, IsNotFound: true}
		dnsclient_unix.go#L616: 		return nil, dnsmessage.Name{}, &DNSError{Err: errNoSuchHost.Error(), Name: name, IsNotFound: true}
		dnsclient_unix.go#L702: 						Err:    "cannot marshal DNS message",
		dnsclient_unix.go#L715: 							Err:    "cannot marshal DNS message",
		dnsclient_unix.go#L730: 							Err:    "cannot marshal DNS message",
		dnsclient_unix.go#L745: 							Err:    "cannot marshal DNS message",
		dnsclient_unix.go#L758: 							Err:    "cannot marshal DNS message",
		dnsclient_unix.go#L821: 			return nil, &DNSError{Err: errNoSuchHost.Error(), Name: addr, IsNotFound: true}
		dnsclient_unix.go#L850: 				Err:    "cannot marshal DNS message",
		dnsclient_unix.go#L859: 					Err:    "cannot marshal DNS message",
		dnsclient_unix.go#L869: 				Err:    "cannot marshal DNS message",
		lookup.go#L185: 		return nil, &DNSError{Err: errNoSuchHost.Error(), Name: host, IsNotFound: true}
		lookup.go#L229: 		return nil, &DNSError{Err: errNoSuchHost.Error(), Name: host, IsNotFound: true}
		lookup.go#L297: 		return nil, &DNSError{Err: errNoSuchHost.Error(), Name: host, IsNotFound: true}
		lookup.go#L349: 			Err:       mapErr(ctxErr).Error(),
		lookup.go#L370: 					Err:       err.Error(),
		lookup.go#L477: 		return "", &DNSError{Err: errMalformedDNSRecordsDetail, Name: host}
		lookup.go#L520: 		return "", nil, &DNSError{Err: "SRV header name is invalid", Name: name}
		lookup.go#L533: 		return cname, filteredAddrs, &DNSError{Err: errMalformedDNSRecordsDetail, Name: name}
		lookup.go#L573: 		return filteredMX, &DNSError{Err: errMalformedDNSRecordsDetail, Name: name}
		lookup.go#L613: 		return filteredNS, &DNSError{Err: errMalformedDNSRecordsDetail, Name: name}
		lookup.go#L665: 		return filteredNames, &DNSError{Err: errMalformedDNSRecordsDetail, Name: addr}
		lookup.go#L725: 				Err:    "cannot unmarshal DNS message",
		lookup.go#L733: 					Err:    "cannot unmarshal DNS message",
		lookup.go#L746: 				Err:    "cannot unmarshal DNS message",
		lookup.go#L771: 				Err:    "cannot unmarshal DNS message",
		lookup.go#L779: 					Err:    "cannot unmarshal DNS message",
		lookup.go#L789: 				Err:    "cannot unmarshal DNS message",
		lookup.go#L815: 				Err:    "cannot unmarshal DNS message",
		lookup.go#L823: 					Err:    "cannot unmarshal DNS message",
		lookup.go#L833: 				Err:    "cannot unmarshal DNS message",
		lookup.go#L857: 				Err:    "cannot unmarshal DNS message",
		lookup.go#L865: 					Err:    "cannot unmarshal DNS message",
		lookup.go#L875: 				Err:    "cannot unmarshal DNS message",
		net.go#L622: 	Err         string // description of the error
		net.go#L638: 	s += ": " + e.Err