Searched refs:ip_in_host_order (Results 1 – 1 of 1) sorted by relevance
223 bool IsPrivateV4(uint32_t ip_in_host_order) { in IsPrivateV4() argument224 return ((ip_in_host_order >> 24) == 127) || in IsPrivateV4()225 ((ip_in_host_order >> 24) == 10) || in IsPrivateV4()226 ((ip_in_host_order >> 20) == ((172 << 4) | 1)) || in IsPrivateV4()227 ((ip_in_host_order >> 16) == ((192 << 8) | 168)) || in IsPrivateV4()228 ((ip_in_host_order >> 16) == ((169 << 8) | 254)); in IsPrivateV4()