net.IPNet.IP (field)
14 uses
net (current package)
interface_linux.go#L180: return &IPNet{IP: IPv4(a.Value[0], a.Value[1], a.Value[2], a.Value[3]), Mask: CIDRMask(int(ifam.Prefixlen), 8*IPv4len)}
interface_linux.go#L182: ifa := &IPNet{IP: make(IP, IPv6len), Mask: CIDRMask(int(ifam.Prefixlen), 8*IPv6len)}
interface_linux.go#L183: copy(ifa.IP, a.Value[:])
ip.go#L47: IP IP // network number
ip.go#L457: if ip = n.IP.To4(); ip == nil {
ip.go#L458: ip = n.IP
ip.go#L567: return IP(addr16[:]), &IPNet{IP: IP(addr16[:]).Mask(m), Mask: m}, nil
sockopt_posix.go#L38: if v.IP.To4() != nil {
sockopt_posix.go#L39: return v.IP, nil
sockopt_posix.go#L62: if a := v.IP.To4(); a != nil {
crypto/x509
parser.go#L601: ips = append(ips, &net.IPNet{IP: net.IP(ip), Mask: net.IPMask(mask)})
verify.go#L480: if len(ip) != len(constraint.IP) {
verify.go#L485: if mask := constraint.Mask[i]; ip[i]&mask != constraint.IP[i]&mask {
x509.go#L1286: maskedIP := ipNet.IP.Mask(ipNet.Mask)