Home | History | Annotate | Download | only in mDNSCore

Lines Matching refs:mDNSfalse

279 	static mDNSBool seeded = mDNSfalse;
314 return(mDNSfalse);
323 default: return(mDNSfalse);
339 { debugf("Malformed label (too long)"); return(mDNSfalse); }
341 if (len != *b++) return(mDNSfalse);
348 if (ac != bc) return(mDNSfalse);
362 { debugf("Malformed domain name (more than 256 characters)"); return(mDNSfalse); }
363 if (!SameDomainLabel(a, b)) return(mDNSfalse);
403 return(mDNSfalse);
580 // MakeDomainLabelFromLiteralString makes a legal domain label from the first 63 bytes of the string and returns mDNSfalse.
693 mDNSBool loggedUnderscore = mDNSfalse;
760 if (src[i] == '_' && loggedUnderscore == mDNSfalse)
803 // DeconstructServiceName will reject it and return mDNSfalse.
814 if (!len) { debugf("DeconstructServiceName: FQDN empty!"); return(mDNSfalse); }
815 if (len >= 0x40) { debugf("DeconstructServiceName: Instance name too long"); return(mDNSfalse); }
820 if (!len) { debugf("DeconstructServiceName: FQDN contains only one label!"); return(mDNSfalse); }
821 if (len >= 0x40) { debugf("DeconstructServiceName: Application protocol name too long"); return(mDNSfalse); }
822 if (src[1] != '_'){ debugf("DeconstructServiceName: No _ at start of application protocol"); return(mDNSfalse); }
826 if (!len) { debugf("DeconstructServiceName: FQDN contains only two labels!"); return(mDNSfalse); }
828 { debugf("DeconstructServiceName: Transport protocol must be _udp or _tcp"); return(mDNSfalse); }
837 { debugf("DeconstructServiceName: Label in service domain too long"); return(mDNSfalse); }
839 { debugf("DeconstructServiceName: Total service domain too long"); return(mDNSfalse); }
894 if (l < 4) return mDNSfalse; // Need at least " (2)"
895 if (name->c[l--] != ')') return mDNSfalse; // Last char must be ')'
896 if (!mDNSIsDigit(name->c[l])) return mDNSfalse; // Preceeded by a digit
903 if (l < 2) return mDNSfalse; // Need at least "-2"
904 if (!mDNSIsDigit(name->c[l])) return mDNSfalse; // Last char must be a digit
1052 rr->AllowRemoteQuery = mDNSfalse;
1053 rr->ForceMCast = mDNSfalse;
1082 rr->SRVChanged = mDNSfalse;
1098 q->ForceMCast = mDNSfalse;
1099 q->ReturnIntermed = mDNSfalse;
1100 q->SuppressUnusable = mDNSfalse;
1103 mDNSfalse;
1202 case kDNSType_OPT: return mDNSfalse; // OPT is a pseudo-RR container structure; makes no sense to compare
1224 return mDNSfalse;
1228 rr->InterfaceID != q->InterfaceID) return(mDNSfalse);
1231 if (!rr->InterfaceID && rr->rDNSServer != q->qDNSServer) return(mDNSfalse);
1234 if (rr->InterfaceID && !mDNSOpaque16IsZero(q->TargetQID)) return(mDNSfalse);
1237 if (!RRTypeAnswersQuestionType(rr,q->qtype)) return(mDNSfalse);
1238 if (rr->rrclass != q->qclass && q->qclass != kDNSQClass_ANY) return(mDNSfalse);
1250 return mDNSfalse;
1255 rr->InterfaceID != q->InterfaceID) return(mDNSfalse);
1258 if (!rr->InterfaceID && rr->rDNSServer != q->qDNSServer) return(mDNSfalse);
1261 if (rr->InterfaceID && !mDNSOpaque16IsZero(q->TargetQID)) return(mDNSfalse);
1264 if (!RRTypeAnswersQuestionType(rr,q->qtype)) return(mDNSfalse);
1265 if (rr->rrclass != q->qclass && q->qclass != kDNSQClass_ANY) return(mDNSfalse);
1288 return mDNSfalse;
1300 rr->InterfaceID != q->InterfaceID) return(mDNSfalse);
1337 if (ar->ARType != AuthRecordLocalOnly && rr->InterfaceID && !mDNSOpaque16IsZero(q->TargetQID)) return(mDNSfalse);
1340 if (!RRTypeAnswersQuestionType(rr,q->qtype)) return(mDNSfalse);
1341 if (rr->rrclass != q->qclass && q->qclass != kDNSQClass_ANY) return(mDNSfalse);
1353 return mDNSfalse;
1357 rr->InterfaceID != q->InterfaceID) return(mDNSfalse);
1362 if (!rr->InterfaceID && rr->rDNSServer != q->qDNSServer) return(mDNSfalse);
1365 if (rr->InterfaceID && !mDNSOpaque16IsZero(q->TargetQID)) return(mDNSfalse);
1367 if (rr->rrclass != q->qclass && q->qclass != kDNSQClass_ANY) return(mDNSfalse);
1381 q->InterfaceID && rr->InterfaceID != q->InterfaceID) return(mDNSfalse);
1384 if (rr->InterfaceID && !mDNSOpaque16IsZero(q->TargetQID)) return(mDNSfalse);
1387 if (!RRTypeAnswersQuestionType(rr,q->qtype)) return(mDNSfalse);
1389 if (rr->rrclass != q->qclass && q->qclass != kDNSQClass_ANY) return(mDNSfalse);
1481 case kDNSType_TXT: if (!rdlength) return(mDNSfalse); // TXT record has to be at least one byte (RFC 1035)
2032 rr->rdlength = GetRDLength(rr, mDNSfalse);
2161 rr->MPExpectingKA = mDNSfalse;