net.DNSError.IsTemporary (field)
7 uses
net (current package)
cgo_unix.go#L127: return 0, &DNSError{Err: err.Error(), Name: network + "/" + service, IsTemporary: isTemporary}
cgo_unix.go#L190: return nil, &DNSError{Err: err.Error(), Name: name, IsNotFound: isErrorNoSuchHost, IsTemporary: isTemporary}
cgo_unix.go#L275: return nil, &DNSError{Err: err.Error(), Name: addr, IsTemporary: isTemporary, IsNotFound: isErrorNoSuchHost}
dnsclient_unix.go#L290: dnsErr.IsTemporary = true
dnsclient_unix.go#L303: dnsErr.IsTemporary = true
net.go#L626: IsTemporary bool // if true, error is temporary; not all errors set this
net.go#L650: func (e *DNSError) Temporary() bool { return e.IsTimeout || e.IsTemporary }
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |