net.IPNet.IP (field)

13 uses

	net (current package)
		interface_bsd.go#L113: 				ifat = append(ifat, &IPNet{IP: ip, Mask: mask})
		ip.go#L42: 	IP   IP     // network number
		ip.go#L476: 	if ip = n.IP.To4(); ip == nil {
		ip.go#L477: 		ip = n.IP
		ip.go#L729: 	return ip, &IPNet{IP: ip.Mask(m), Mask: m}, nil
		sockopt_posix.go#L40: 				if ip.Equal(v.IP) {
		sockopt_posix.go#L67: 			if v.IP.To4() != nil {
		sockopt_posix.go#L68: 				return v.IP, nil
		sockopt_posix.go#L91: 			if a := v.IP.To4(); a != nil {

	crypto/x509
		verify.go#L462: 	if len(ip) != len(constraint.IP) {
		verify.go#L467: 		if mask := constraint.Mask[i]; ip[i]&mask != constraint.IP[i]&mask {
		x509.go#L1225: 				ips = append(ips, &net.IPNet{IP: net.IP(ip), Mask: net.IPMask(mask)})
		x509.go#L1792: 			maskedIP := ipNet.IP.Mask(ipNet.Mask)