func net.ParseIP

15 uses

	net (current package)
		dnsclient.go#L34: 	ip := ParseIP(addr)
		dnsclient_unix.go#L593: 		if ip := ParseIP(haddr); ip != nil {
		ip.go#L380: 	x := ParseIP(s)
		ip.go#L527: func ParseIP(s string) IP {
		ipsock_posix.go#L50: 		{laddr: TCPAddr{IP: ParseIP("::1")}, value: 1},

	net/http
		cookie.go#L422: 	if net.ParseIP(v) != nil && !strings.Contains(v, ":") {
		socks_bundle.go#L92: 	if ip := net.ParseIP(host); ip != nil {
		socks_bundle.go#L410: 		a.IP = net.ParseIP(host)

	crypto/tls
		handshake_client.go#L1316: 	if net.ParseIP(host) != nil {

	crypto/x509
		parser.go#L652: 				if net.ParseIP(domain) != nil {
		verify.go#L120: 	if ip := net.ParseIP(h.Host); ip != nil {
		verify.go#L1212: 	if ip := net.ParseIP(candidateIP); ip != nil {

	github.com/jackc/pgx/v5/pgconn
		config.go#L608: 	return net.ParseIP(strings.Trim(host, "[]")) != nil || !strings.Contains(host, ":")
		config.go#L892: 	if sslsni == "1" && net.ParseIP(host) == nil {

	vendor/golang.org/x/net/http/httpproxy
		proxy.go#L247: 		if pip := net.ParseIP(phost); pip != nil {