/external/mdnsresponder/mDNSPosix/ |
ProxyResponder.c | 58 debugf("Host name successfully registered: %##s", rr->resrec.name->c); 61 debugf("Host name conflict for %##s", rr->resrec.name->c); 84 p->RR_A. resrec.rdata->u.ipv4 = p->ip; 85 AssignDomainName(&p->RR_PTR.resrec.rdata->u.name, p->RR_A.resrec.name); 90 debugf("Made Proxy Host Records for %##s", p->RR_A.resrec.name->c); 106 case mStatus_NoError: debugf("Callback: %##s Name Registered", sr->RR_SRV.resrec.name->c); break; 107 case mStatus_NameConflict: debugf("Callback: %##s Name Conflict", sr->RR_SRV.resrec.name->c); break; 108 case mStatus_MemFree: debugf("Callback: %##s Memory Free", sr->RR_SRV.resrec.name->c); break; 109 default: debugf("Callback: %##s Unknown Result %ld", sr->RR_SRV.resrec.name->c, result); break [all...] |
NetMonitor.c | 469 if (m->rec.r.resrec.RecordType != kDNSRecordTypePacketNegative && ResourceRecordAnswersQuestion(&pkt->r.resrec, q)) return(p2); 637 DisplayResourceRecord(srcaddr, ucbit ? "(PU)" : "(PM)", &pkt.r.resrec); 658 DisplayResourceRecord(srcaddr, "(KA)", &pkt.r.resrec); 664 recordstat(entry, pkt.r.resrec.name, OP_query, pkt.r.resrec.rrtype); 674 if (pkt.r.resrec.rrtype || pkt.r.resrec.rrclass) DisplayResourceRecord(srcaddr, "(AU)", &pkt.r.resrec); 682 DisplayResourceRecord(srcaddr, pkt.r.resrec.rrtype == kDNSType_OPT ? "(OP)" : "(AD)", &pkt.r.resrec) [all...] |
Responder.c | 366 debugf("Callback: %##s Name Registered", thisRegistration->RR_SRV.resrec.name->c); 372 debugf("Callback: %##s Name Conflict", thisRegistration->RR_SRV.resrec.name->c); 390 debugf("Callback: %##s Memory Free", thisRegistration->RR_SRV.resrec.name->c); 410 debugf("Callback: %##s Unknown Status %ld", thisRegistration->RR_SRV.resrec.name->c, status);
|
/external/mdnsresponder/mDNSCore/ |
mDNS.c | 118 (rr)->resrec.RecordType & kDNSRecordTypeUniqueMask && \ 119 ((rr)->resrec.rrtype == kDNSType_A || (rr)->resrec.rrtype == kDNSType_AAAA || \ 120 (rr)->resrec.rrtype == kDNSType_CNAME)) 283 const mDNSu32 slot = AuthHashSlot(rr->resrec.name); 284 ag = AuthGroupForRecord(r, slot, &rr->resrec); 285 if (!ag) ag = GetAuthGroup(r, slot, &rr->resrec); // If we don't have a AuthGroup for this name, make one now 300 const mDNSu32 slot = AuthHashSlot(rr->resrec.name); 302 a = AuthGroupForRecord(r, slot, &rr->resrec); 390 m->rec.r.resrec.RecordType = 0; // Clear RecordType to show we're not still using i [all...] |
uDNS.c | 387 info->AutoTunnelHostRecord.resrec.RecordType = kDNSRecordTypeUnregistered; 389 info->AutoTunnelTarget .resrec.RecordType = kDNSRecordTypeUnregistered; 390 info->AutoTunnelDeviceInfo.resrec.RecordType = kDNSRecordTypeUnregistered; 391 info->AutoTunnelService .resrec.RecordType = kDNSRecordTypeUnregistered; 392 info->AutoTunnel6Record .resrec.RecordType = kDNSRecordTypeUnregistered; 705 ResourceRecord *opt = &rr.resrec; 721 optRD = &rr.resrec.rdata->u.opt[0]; [all...] |
DNSCommon.c | 141 if (rr->resrec.InterfaceID == id) used++; [all...] |
DNSDigest.c | [all...] |
mDNSEmbeddedAPI.h | 1184 ResourceRecord resrec; \/\/ 36 bytes when compiling for 32-bit; 48 when compiling for 64-bit member in struct:AuthRecord_struct 1323 ResourceRecord resrec; \/\/ 36 bytes when compiling for 32-bit; 48 when compiling for 64-bit member in struct:CacheRecord_struct [all...] |
DNSCommon.h | 177 #define LocalRecordReady(X) ((X)->resrec.RecordType != kDNSRecordTypeUnique)
|
/external/mdnsresponder/mDNSShared/ |
dnsextd.c | 570 if ( lcr.r.resrec.rrtype == kDNSType_OPT && lcr.r.resrec.rdlength >= DNSOpt_LLQData_Space && lcr.r.resrec.rdata->u.opt[0].opt == kDNSOpt_LLQ ) 789 if (orig->resrec.rdlength > InlineCacheRDSize) size += orig->resrec.rdlength - InlineCacheRDSize; 793 cr->resrec.rdata = (RData*)&cr->smallrdatastorage; 794 cr->resrec.name = name; 821 bucket = ptr->rr.resrec.namehash % newnbuckets; 854 GetRRDisplayString_rdb(&ptr->rr.resrec, &ptr->rr.resrec.rdata->u, rrbuf)) [all...] |
uds_daemon.c | 540 rr->resrec.rrclass = class; 541 rr->resrec.rdlength = rdlen; 542 rr->resrec.rdata->MaxRDLength = rdlen; 543 mDNSPlatformMemCopy(rr->resrec.rdata->u.data, rdata, rdlen); 544 if (GetTTL) rr->resrec.rroriginalttl = ttl; 545 rr->resrec.namehash = DomainNameHashValue(rr->resrec.name); 546 SetNewRData(&rr->resrec, mDNSNULL, 0); // Sets rr->rdatahash for us 631 external_start_advertising_service(&st[i].resrec); 633 external_start_advertising_service(&instance->srs.RR_PTR.resrec); [all...] |
uds_daemon.h | 30 #define SRS_PORT(S) mDNSVal16((S)->RR_SRV.resrec.rdata->u.srv.port)
|
dnssd_clientshim.c | 155 if (extras->r.resrec.rdata != &extras->r.rdatastorage) 156 mDNSPlatformMemFree(extras->r.resrec.rdata); 160 if (x->s.RR_TXT.resrec.rdata != &x->s.RR_TXT.rdatastorage) 161 mDNSPlatformMemFree(x->s.RR_TXT.resrec.rdata); 189 if (!DeconstructServiceName(sr->RR_SRV.resrec.name, &name, &type, &dom)) return;
|