HomeSort by: relevance | last modified time | path
    Searched refs:kDNSType_A (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/mDNSResponder/dist/mDNSShared/
ClientRequests.c 57 #define RecordTypeIsAddress(TYPE) (((TYPE) == kDNSType_A) || ((TYPE) == kDNSType_AAAA))
246 opParams.qtype = kDNSType_A;
419 v4q = (inRequest->op.q.qtype == kDNSType_A) ? &inRequest->op.q : mDNSNULL;
581 q->PersistWhenRecordsUnusable = (inParams->qtype == kDNSType_A) && inParams->persistWhenARecordsUnusable;
816 inQuestion->qtype = kDNSType_A;
1120 if (inAnswer->rrtype == kDNSType_A || inAnswer->rrtype == kDNSType_AAAA)
1122 if (inAnswer->rrtype == kDNSType_A)
discover_resolver.c 843 const mDNSAddr_Type addr_type = answer->rrtype == kDNSType_A ? mDNSAddrType_IPv4 : mDNSAddrType_IPv6;
861 mdns_require_quiet(answer->rrtype == kDNSType_A || answer->rrtype == kDNSType_AAAA, exit);
918 discover_resolver_setup_question(ipv4, resolver_name->interface_id, name, kDNSType_A, false,
uds_daemon.c 1684 rr->resrec.rrclass == kDNSClass_IN && (rr->resrec.rrtype == kDNSType_A || rr->resrec.rrtype == kDNSType_AAAA ||
4867 ((answer->rrtype == kDNSType_A) || (answer->rrtype == kDNSType_AAAA)));
4923 (answer->rrtype == kDNSType_A || answer->rrtype == kDNSType_AAAA || answer->rrtype == kDNSType_TXT))
4926 if (answer->rrtype == kDNSType_A || answer->rrtype == kDNSType_AAAA)
4943 else if (answer->rrtype == kDNSType_A)
  /src/external/apache2/mDNSResponder/dist/mDNSCore/
DNSCommon.c 269 case kDNSType_A: return("Addr");
506 case kDNSType_A: mDNS_snprintf(buffer+length, RemSpc, "%.4a", &rd->ipv4); break;
2468 case kDNSType_A: return(sizeof(rd->ipv4));
2538 case kDNSType_A: return(rdlength == sizeof(mDNSv4Addr));
2768 case kDNSType_A: if (rr->rdlength != 4)
2769 { debugf("putRData: Illegal length %d for kDNSType_A", rr->rdlength); return(mDNSNULL); }
3413 case kDNSType_A:
4223 #define DNSTypeString(X) (((X) == kDNSType_A) ? "A" : DNSTypeName(X))
4290 case kDNSType_A:
mDNS.c 385 ((rr)->resrec.rrtype == kDNSType_A || (rr)->resrec.rrtype == kDNSType_AAAA || \
994 #define RRTypeIsAddressType(T) ((T) == kDNSType_A || (T) == kDNSType_AAAA)
7152 if (q->qtype != kDNSType_A && q->qtype != kDNSType_AAAA && q->qtype != kDNSType_CNAME) continue;
7690 if (rr->resrec.rrtype == kDNSType_A)
7764 if (ar->resrec.rrtype == kDNSType_A || ar->resrec.rrtype == kDNSType_AAAA)
7841 question->qtype = kDNSType_A;
7844 else if (answer->rrtype == kDNSType_A && answer->rdlength == sizeof(mDNSv4Addr))
7855 else if (answer->rrtype == kDNSType_A && answer->rdlength == 0)
12027 else if (llintf && llintf->IgnoreIPv4LL && m->rec.r.resrec.rrtype == kDNSType_A)
14482 if (q->qtype == kDNSType_A)
    [all...]
uDNS.c 1896 GetZoneData_StartQuery(m, zd, kDNSType_A);
1915 else if (answer->rrtype == kDNSType_A)
2452 mDNS_SetupResourceRecord(&h->arv4, mDNSNULL, mDNSInterface_Any, kDNSType_A, kHostNameTTL, kDNSRecordTypeUnregistered, AuthRecordAny, HostnameCallback, h);
2517 if (rr->resrec.rrtype == kDNSType_A)
2543 if (rr->resrec.rrtype == kDNSType_A)
5794 // RRSIG that covers kDNSType_A or kDNSType_AAAA should always be checked.
5796 // that covers kDNSType_A or kDNSType_AAAA records. It still needs to go through the "IsAnswer" process to
5801 const mDNSBool typeMatches = RRTypeAnswersQuestionType(&cr->resrec, kDNSType_A, flags) ||
mDNSEmbeddedAPI.h 229 kDNSType_A = 1, // 1 Address
523 #define DefaultTTLforRRType(X) (((X) == kDNSType_A || (X) == kDNSType_AAAA || (X) == kDNSType_SRV) ? kHostNameTTL : kStandardTTL)

Completed in 97 milliseconds