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

  /src/external/apache2/mDNSResponder/dist/mDNSShared/
dnssd_clientlib.c 71 const void *txtRecord,
76 const uint8_t *p = (const uint8_t*)txtRecord;
171 #define txtRec ((TXTRecordRefRealType*)txtRecord)
182 TXTRecordRef *txtRecord,
193 void DNSSD_API TXTRecordDeallocate(TXTRecordRef *txtRecord)
200 TXTRecordRef *txtRecord,
214 (void)TXTRecordRemoveValue(txtRecord, key);
245 TXTRecordRef *txtRecord,
260 uint16_t DNSSD_API TXTRecordGetLength(const TXTRecordRef *txtRecord) { return(((const TXTRecordRefRealType*)txtRecord)->datalen);
    [all...]
dns_sd.h 1397 * The length of the txtRecord, in bytes. Must be zero if the txtRecord is NULL.
1399 * @param txtRecord
1400 * The TXT record rdata. A non-NULL txtRecord MUST be a properly formatted DNS
1402 * Passing NULL for the txtRecord is allowed as a synonym for txtLen=1, txtRecord="",
1406 * As with the other parameters, the DNSServiceRegister call copies the txtRecord
1407 * data; e.g. if you allocated the storage for the txtRecord parameter with malloc()
1440 const void *txtRecord, /* may be NULL */
1798 * @param txtRecord
    [all...]
dnssd_clientstub.h 53 const void *txtRecord, const DNSServiceAttribute *attr, DNSServiceRegisterReply callBack, void *context);
dnssd_clientstub.c 1535 const unsigned char *txtrecord; local
1544 txtrecord = (const unsigned char *)get_rdata(&data, end, txtlen);
1547 ((DNSServiceResolveReply)sdr->AppCallback)(sdr, cbh->cb_flags, cbh->cb_interface, cbh->cb_err, fullname, target, port.s, txtlen, txtrecord, sdr->AppContext);
1975 const void *txtRecord,
1980 return DNSServiceRegisterInternal(sdRef, flags, interfaceIndex, name, regtype, domain, host, PortInNetworkByteOrder, txtLen, txtRecord, NULL, callBack, context);
1994 const void *txtRecord,
2000 return DNSServiceRegisterInternal(sdRef, flags, interfaceIndex, name, regtype, domain, host, portInNetworkByteOrder, txtLen, txtRecord, attr, callBack, context);
2014 const void *txtRecord,
2032 if (!txtRecord) txtRecord = (void*)""
    [all...]
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/test/
srp-test-runner.h 28 const void *NONNULL txtRecord, DNSServiceRegisterReply NONNULL callBack,
test-dnssd.c 340 uint16_t txtLen, const void *txtRecord, DNSServiceRegisterReply callBack, void *context)
343 txtRecord, NULL, callBack, context);
349 uint16_t txtLen, const void *txtRecord, DNSServiceAttributeRef attr,
357 txtLen, txtRecord, attr, dns_service_register_callback, ret);
359 interfaceIndex, name, regtype, domain, host, port, txtLen, txtRecord,
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
srp-dnssd.h 26 const void *NULLABLE txtRecord, DNSServiceRegisterReply NULLABLE callBack,
32 const void *NULLABLE txtRecord, DNSServiceAttributeRef NULLABLE attr,
srp-client.c 101 void *NULLABLE txtRecord;
528 void *txtRecord = NULL;
549 txtRecord = malloc(rdlen);
550 if (txtRecord == NULL) {
553 memcpy(txtRecord, rdata, rdlen);
555 registration->txtRecord = NULL;
558 if (registration->txtRecord != NULL) {
559 free(registration->txtRecord);
562 registration->txtRecord = txtRecord;
    [all...]
  /src/external/apache2/mDNSResponder/dist/Clients/
dns-sd.c 829 static void ShowTXTRecord(uint16_t txtLen, const unsigned char *txtRecord)
831 const unsigned char *ptr = txtRecord;
832 const unsigned char *max = txtRecord + txtLen;
864 const char *fullname, const char *hosttarget, uint16_t opaqueport, uint16_t txtLen, const unsigned char *txtRecord, void *context)
885 if (!errorCode && txtLen > 1) { printf("\n"); ShowTXTRecord(txtLen, txtRecord); }
1780 const void *txtRecord = "\0"; /* may be NULL */
1784 if ( (DNSServiceRegister( 0, flags, interfaceIndex, name, regtype, domain, host, port, txtLen, txtRecord, callBack, context) == 0)
1785 || (DNSServiceRegister(&sdRef, flags, interfaceIndex, name, 0, domain, host, port, txtLen, txtRecord, callBack, context) == 0)
1986 // Test code for TXTRecord functions
1987 //TXTRecordRef txtRecord;
    [all...]

Completed in 85 milliseconds