Lines Matching defs:txt
591 const char *fullname, const char *hosttarget, uint16_t opaqueport, uint16_t txtLen, const unsigned char *txt, void *context)
600 const unsigned char *max = txt + txtLen;
630 while (txt < max)
632 const unsigned char *const end = txt + 1 + txt[0];
633 txt++; // Skip over length byte
635 while (txt<end)
637 if (*txt == '\\' || *txt == '\"') printf("\\");
638 printf("%c", *txt++);
1362 unsigned char txt[2048] = "";
1363 unsigned char *ptr = txt;
1379 while (*p && *ptr < 255 && ptr + 1 + *ptr < txt+sizeof(txt))
1388 ShowTXTRecord(ptr-txt, txt);
1395 return(DNSServiceRegister(sdref, flags, opinterface, nam, typ, dom, host, registerPort.NotAnInteger, (uint16_t) (ptr-txt), txt, reg_reply, NULL));