Searched refs:pktrdlength (Results 1 – 1 of 1) sorted by relevance
1837 mDNSu16 pktrdlength; in skipResourceRecord() local1843 pktrdlength = (mDNSu16)((mDNSu16)ptr[8] << 8 | ptr[9]); in skipResourceRecord()1845 …if (ptr + pktrdlength > end) { debugf("skipResourceRecord: RDATA exceeds end of packet"); return(m… in skipResourceRecord()1847 return(ptr + pktrdlength); in skipResourceRecord()1854 mDNSu16 pktrdlength; in GetLargeResourceRecord() local1889 pktrdlength = (mDNSu16)((mDNSu16)ptr[8] << 8 | ptr[9]); in GetLargeResourceRecord()1893 …if (ptr + pktrdlength > end) { debugf("GetResourceRecord: RDATA exceeds end of packet"); return(mD… in GetLargeResourceRecord()1894 end = ptr + pktrdlength; // Adjust end to indicate the end of the rdata for this resource record in GetLargeResourceRecord()1918 case kDNSType_TXT: if (pktrdlength > rr->resrec.rdata->MaxRDLength) in GetLargeResourceRecord()1921 DNSTypeName(rr->resrec.rrtype), pktrdlength, rr->resrec.rdata->MaxRDLength); in GetLargeResourceRecord()[all …]