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)