Home
last modified time | relevance | path

Searched refs:pktrdlength (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/contrib/mDNSResponder/mDNSCore/
H A DDNSCommon.c2538 mDNSu16 pktrdlength; in skipResourceRecord() local
2544 pktrdlength = (mDNSu16)((mDNSu16)ptr[8] << 8 | ptr[9]); in skipResourceRecord()
2546 …if (ptr + pktrdlength > end) { debugf("skipResourceRecord: RDATA exceeds end of packet"); return(m… in skipResourceRecord()
2548 return(ptr + pktrdlength); in skipResourceRecord()
3161 mDNSu16 pktrdlength; in GetLargeResourceRecord() local
3202 pktrdlength = (mDNSu16)((mDNSu16)ptr[8] << 8 | ptr[9]); in GetLargeResourceRecord()
3209 …if (ptr + pktrdlength > end) { debugf("GetLargeResourceRecord: RDATA exceeds end of packet"); retu… in GetLargeResourceRecord()
3210 …end = ptr + pktrdlength; // Adjust end to indicate the end of the rdata for this resource r… in GetLargeResourceRecord()
3215 if (pktrdlength > MaximumRDSize) in GetLargeResourceRecord()
3218 DNSTypeName(rr->resrec.rrtype), pktrdlength, rr->resrec.rdata->MaxRDLength); in GetLargeResourceRecord()
[all …]