Home | History | Annotate | Download | only in proxy

Lines Matching refs:ip_address

300 // Handler for "isInNetEx(ip_address, ip_prefix)". |ip_address| is a string
307 bool IsInNetEx(const std::string& ip_address, const std::string& ip_prefix) {
309 if (!ParseIPLiteralToNumber(ip_address, &address))
605 std::string ip_address;
610 success = context->js_bindings_->DnsResolve(hostname, &ip_address);
613 return success ? ASCIIStringToV8String(ip_address) : v8::Null();
664 std::string ip_address = V8StringToUTF8(args[0]->ToString());
665 if (!IsStringASCII(ip_address))
670 return IsInNetEx(ip_address, ip_prefix) ? v8::True() : v8::False();