Lines Matching defs:label
1504 LogInfo("GetZoneData recursed to root label of %##s without finding SOA", zd->ChildName.c);
3789 // We might be tempted also to block updates to any single-label name server (e.g. com, edu, net, etc.) but some
4127 const mDNSu8 *label;
4130 // We need at least 3 labels (WAB prefix) + one more label to make
4134 label = (const mDNSu8 *)d;
4137 if (SameDomainLabel(mDNS_WABLabels[i], label)) {debugf("WABquestion: WAB question %##s, label1 match", qname->c); break;}
4146 d = (const domainname *)(d->c + 1 + d->c[0]); // Second Label
4147 label = (const mDNSu8 *)d;
4148 if (!SameDomainLabel(label, sd)){ debugf("WABquestion: Not a WAB question %##s, label2 mismatch", qname->c);return(mDNSfalse); }
4151 d = (const domainname *)(d->c + 1 + d->c[0]); // Third Label
4152 label = (const mDNSu8 *)d;
4153 if (!SameDomainLabel(label, prot)){ debugf("WABquestion: Not a WAB question %##s, label3 mismatch", qname->c);return(mDNSfalse); }