Searched refs:ip_in_host_order (Results 1 – 1 of 1) sorted by relevance
214 bool IsPrivateV4(uint32 ip_in_host_order) { in IsPrivateV4() argument215 return ((ip_in_host_order >> 24) == 127) || in IsPrivateV4()216 ((ip_in_host_order >> 24) == 10) || in IsPrivateV4()217 ((ip_in_host_order >> 20) == ((172 << 4) | 1)) || in IsPrivateV4()218 ((ip_in_host_order >> 16) == ((192 << 8) | 168)) || in IsPrivateV4()219 ((ip_in_host_order >> 16) == ((169 << 8) | 254)); in IsPrivateV4()