func net.JoinHostPort
12 uses
net (current package)
dnsconfig_unix.go#L57: conf.servers = append(conf.servers, JoinHostPort(f[1], "53"))
ipsock.go#L236: func JoinHostPort(host, port string) string {
tcpsock.go#L50: return JoinHostPort(ip+"%"+a.Zone, itoa.Itoa(a.Port))
tcpsock.go#L52: return JoinHostPort(ip, itoa.Itoa(a.Port))
udpsock.go#L53: return JoinHostPort(ip+"%"+a.Zone, itoa.Itoa(a.Port))
udpsock.go#L55: return JoinHostPort(ip, itoa.Itoa(a.Port))
net/http
h2_bundle.go#L7721: return net.JoinHostPort(host, port)
socks_bundle.go#L255: return net.JoinHostPort(a.Name, port)
socks_bundle.go#L257: return net.JoinHostPort(a.IP.String(), port)
transport.go#L2877: return net.JoinHostPort(idnaASCIIFromURL(url), port)
vendor/golang.org/x/net/http/httpguts
httplex.go#L346: return net.JoinHostPort(host, port), nil
vendor/golang.org/x/net/http/httpproxy
proxy.go#L292: return net.JoinHostPort(addr, port)
 |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |