func net.ParseIP

20 uses

	net (current package)
		dnsclient.go#L30: 	ip := ParseIP(addr)
		dnsclient_unix.go#L578: 		if ip := ParseIP(haddr); ip != nil {
		ip.go#L348: 	x := ParseIP(s)
		ip.go#L494: func ParseIP(s string) IP {
		ipsock_posix.go#L40: 		{laddr: TCPAddr{IP: ParseIP("::1")}, value: 1},

	net/http
		cookie.go#L317: 	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#L1133: 	if net.ParseIP(host) != nil {

	crypto/x509
		parser.go#L607: 				if net.ParseIP(domain) != nil {
		verify.go#L108: 	if ip := net.ParseIP(h.Host); ip != nil {
		verify.go#L433: 		net.ParseIP(host) != nil {
		verify.go#L1090: 	if ip := net.ParseIP(candidateIP); ip != nil {

	github.com/gotd/neo
		net.go#L179: 	if a.IP = net.ParseIP(host); a.IP == nil {

	golang.org/x/net/internal/socks
		client.go#L86: 	if ip := net.ParseIP(host); ip != nil {
		socks.go#L254: 		a.IP = net.ParseIP(host)

	golang.org/x/net/proxy
		per_host.go#L60: 	if ip := net.ParseIP(host); ip != nil {
		per_host.go#L111: 		if ip := net.ParseIP(host); ip != nil {

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