Home
last modified time | relevance | path

Searched refs:ip_in_host_order (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/base/
Dipaddress.cc207 bool IsPrivateV4(uint32 ip_in_host_order) { in IsPrivateV4() argument
208 return ((ip_in_host_order >> 24) == 127) || in IsPrivateV4()
209 ((ip_in_host_order >> 24) == 10) || in IsPrivateV4()
210 ((ip_in_host_order >> 20) == ((172 << 4) | 1)) || in IsPrivateV4()
211 ((ip_in_host_order >> 16) == ((192 << 8) | 168)) || in IsPrivateV4()
212 ((ip_in_host_order >> 16) == ((169 << 8) | 254)); in IsPrivateV4()