Home | History | Annotate | Download | only in src

Lines Matching refs:ip_address

319 // Handler for "isInNetEx(ip_address, ip_prefix)". |ip_address| is a string
326 bool IsInNetEx(const std::string& ip_address, const std::string& ip_prefix) {
329 if (RemoveChars(ip_address, " \t", &cleaned_ip_address))
331 if (!ParseIPLiteralToNumber(ip_address, &address))
616 std::string ip_address;
621 success = context->js_bindings_->DnsResolve(hostname, &ip_address);
624 return success ? ASCIIStringToV8String(ip_address) : v8::Null();
673 std::string ip_address = V8StringToUTF8(args[0]->ToString());
675 return IsInNetEx(ip_address, ip_prefix) ? v8::True() : v8::False();