Home | History | Annotate | Download | only in mDNSShared

Lines Matching defs:txtlen

1111 	uint16_t txtlen;
1121 txtlen = get_uint16(&data, end);
1122 txtrecord = (unsigned char *)get_rdata(&data, end, txtlen);
1125 ((DNSServiceResolveReply)sdr->AppCallback)(sdr, cbh->cb_flags, cbh->cb_interface, cbh->cb_err, fullname, target, port.s, txtlen, txtrecord, sdr->AppContext);
1464 uint16_t txtLen,
1491 len += 2 * sizeof(uint16_t); // port, txtLen
1492 len += txtLen;
1506 put_uint16(txtLen, &ptr);
1507 put_rdata(txtLen, txtRecord, &ptr);