net.DNSError.IsNotFound (field)
14 uses
net (current package)
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#L309: dnsErr.IsNotFound = true
dnsclient_unix.go#L329: lastErr.(*DNSError).IsNotFound = true
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#L821: return nil, &DNSError{Err: errNoSuchHost.Error(), Name: addr, IsNotFound: true}
dnsclient_unix.go#L832: if errors.As(err, &dnsErr) && dnsErr.IsNotFound {
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}
net.go#L627: IsNotFound bool // if true, host could not be found
|
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. |