package net
import "context"
type addrinfoErrno int
func (eai addrinfoErrno ) Error () string { return "<nil>" }
func (eai addrinfoErrno ) Temporary () bool { return false }
func (eai addrinfoErrno ) Timeout () bool { return false }
func cgoLookupHost(ctx context .Context , name string ) (addrs []string , err error , completed bool ) {
return nil , nil , false
}
func cgoLookupPort(ctx context .Context , network , service string ) (port int , err error , completed bool ) {
return 0 , nil , false
}
func cgoLookupIP(ctx context .Context , network , name string ) (addrs []IPAddr , err error , completed bool ) {
return nil , nil , false
}
func cgoLookupCNAME(ctx context .Context , name string ) (cname string , err error , completed bool ) {
return "" , nil , false
}
func cgoLookupPTR(ctx context .Context , addr string ) (ptrs []string , err error , completed bool ) {
return nil , nil , false
}
The pages are generated with Golds v0.5.5 . (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 .