Home | History | Annotate | Download | only in mDNSCore

Lines Matching refs:fqdn

419 // For the FQDN "com." it returns 5 (length byte, three data bytes, final zero)
435 // E.g. for the FQDN "foo.com." it returns 9
685 mDNSexport mDNSu8 *ConstructServiceName(domainname *const fqdn,
689 mDNSu8 *dst = fqdn->c;
790 dst = AppendDomainName(fqdn, domain);
802 // However, if the given FQDN doesn't contain at least three labels,
804 mDNSexport mDNSBool DeconstructServiceName(const domainname *const fqdn,
808 const mDNSu8 *src = fqdn->c;
809 const mDNSu8 *max = fqdn->c + MAX_DOMAIN_NAME;
814 if (!len) { debugf("DeconstructServiceName: FQDN empty!"); return(mDNSfalse); }
820 if (!len) { debugf("DeconstructServiceName: FQDN contains only one label!"); return(mDNSfalse); }
826 if (!len) { debugf("DeconstructServiceName: FQDN contains only two labels!"); return(mDNSfalse); }
2065 // Routine to fetch an FQDN from the DNS message, following compression pointers if necessary.