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

  /src/external/apache2/mDNSResponder/dist/mDNSShared/
uds_daemon.c 816 if (servicename && !DeconstructServiceName(servicename, &name, &type, &dom))
1771 bool good = DeconstructServiceName(rr->resrec.name, &name, &type, &domain);
3993 if (DeconstructServiceName(&browse->regtype, &dName, &dType, &dDomain))
5175 bool good = DeconstructServiceName(&query_name, &name, &type, &domain);
  /src/external/apache2/mDNSResponder/dist/mDNSCore/
mDNSEmbeddedAPI.h 3020 extern mDNSBool DeconstructServiceName(const domainname *const fqdn, domainlabel *const name, domainname *const type, domainname *const domain);
DNSCommon.c 1508 // DeconstructServiceName is currently fairly forgiving: It doesn't try to enforce character
1511 // DeconstructServiceName will reject it and return mDNSfalse.
1512 mDNSexport mDNSBool DeconstructServiceName(const domainname *const fqdn,
1522 if (!len) { debugf("DeconstructServiceName: FQDN empty!"); return(mDNSfalse); }
1523 if (len >= 0x40) { debugf("DeconstructServiceName: Instance name too long"); return(mDNSfalse); }
1528 if (!len) { debugf("DeconstructServiceName: FQDN contains only one label!"); return(mDNSfalse); }
1529 if (len >= 0x40) { debugf("DeconstructServiceName: Application protocol name too long"); return(mDNSfalse); }
1530 if (src[1] != '_') { debugf("DeconstructServiceName: No _ at start of application protocol"); return(mDNSfalse); }
1534 if (!len) { debugf("DeconstructServiceName: FQDN contains only two labels!"); return(mDNSfalse); }
1536 { debugf("DeconstructServiceName: Transport protocol must be _udp or _tcp"); return(mDNSfalse);
    [all...]
mDNS.c 17481 DeconstructServiceName(sr->RR_SRV.resrec.name, &name1, &type, &domain);
18490 DeconstructServiceName(m->SPSRecords.RR_SRV.resrec.name, &name, &type, &domain);

Completed in 62 milliseconds