Lines Matching refs:IP
63 // We never return any /32 or /128 IP address
64 // prefix on any IP tunnel interface as the
177 // Seems like we need to make sure whether the IP interface
178 // stack consists of IP point-to-point numbered or unnumbered
192 return &IPNet{IP: IPv4(a.Value[0], a.Value[1], a.Value[2], a.Value[3]), Mask: CIDRMask(int(ifam.Prefixlen), 8*IPv4len)}
194 ifa := &IPNet{IP: make(IP, IPv6len), Mask: CIDRMask(int(ifam.Prefixlen), 8*IPv6len)}
195 copy(ifa.IP, a.Value[:])
232 // The Linux kernel puts the IP
239 ifma := &IPAddr{IP: IPv4(byte(i>>24), byte(i>>16), byte(i>>8), byte(i))}
264 ifma := &IPAddr{IP: IP{b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7], b[8], b[9], b[10], b[11], b[12], b[13], b[14], b[15]}}