func net.JoinHostPort
15 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#L8038: 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#L2948: return net.JoinHostPort(idnaASCIIFromURL(url), port)
golang.org/x/net/http/httpguts
httplex.go#L346: return net.JoinHostPort(host, port), nil
golang.org/x/net/http2
transport.go#L584: return net.JoinHostPort(host, port)
google.golang.org/grpc/internal/resolver/dns
dns_resolver.go#L102: authorityWithPort := net.JoinHostPort(host, 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)