func net.ParseIP

33 uses

	net (current package)
		dnsclient.go#L31: 	ip := ParseIP(addr)
		dnsclient_unix.go#L548: 		if ip := ParseIP(haddr); ip != nil {
		ip.go#L399: 	x := ParseIP(s)
		ip.go#L678: func ParseIP(s string) IP {
		ipsock_posix.go#L39: 		{laddr: TCPAddr{IP: ParseIP("::1")}, value: 1},

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

	crypto/x509
		verify.go#L125: 	if ip := net.ParseIP(h.Host); ip != nil {
		verify.go#L454: 		net.ParseIP(host) != nil {
		verify.go#L1059: 	if ip := net.ParseIP(candidateIP); ip != nil {
		x509.go#L1257: 				if net.ParseIP(domain) != nil {

	github.com/aws/aws-sdk-go/aws/defaults
		defaults.go#L138: 	ip := net.ParseIP(host)
		defaults.go#L149: 		if !net.ParseIP(addr).IsLoopback() {

	github.com/evanw/esbuild/pkg/api
		serve_other.go#L489: 		if ip := net.ParseIP(host); ip == nil || ip.To4() == nil {

	github.com/go-redis/redis/v8
		cluster.go#L505: 	nodeIP := net.ParseIP(nodeHost)
		cluster.go#L519: 	ip := net.ParseIP(host)

	github.com/jackc/pgconn
		config.go#L437: 	return net.ParseIP(strings.Trim(host, "[]")) != nil || !strings.Contains(host, ":")

	github.com/jackc/pgtype
		inet.go#L133: 	if ip := net.ParseIP(string(src)); ip != nil {

	github.com/prometheus/procfs
		arp.go#L75: 	ip := net.ParseIP(columns[0])
		ipvs.go#L223: 		ip = net.ParseIP(s[1:40])

	golang.org/x/crypto/ssh
		server.go#L305: 		if allowedIP := net.ParseIP(sourceAddr); allowedIP != nil {
		tcpip.go#L187: 	ip := net.ParseIP(string(addr))

	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 {

	golang.org/x/pkgsite/internal/middleware
		quota.go#L54: 	ip := net.ParseIP(origin)

	google.golang.org/grpc/internal/resolver/dns
		dns_resolver.go#L347: 	ip := net.ParseIP(addr)
		dns_resolver.go#L370: 	if ip := net.ParseIP(target); ip != nil {

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