Home | History | Annotate | Download | only in mDNSCore

Lines Matching defs:pktrdlength

3338     mDNSu16 pktrdlength;
3344 pktrdlength = (mDNSu16)((mDNSu16)ptr[8] << 8 | ptr[9]);
3346 if (ptr + pktrdlength > end) { debugf("skipResourceRecord: RDATA exceeds end of packet"); return(mDNSNULL); }
3348 return(ptr + pktrdlength);
3980 mDNSu16 pktrdlength;
4021 pktrdlength = (mDNSu16)((mDNSu16)ptr[8] << 8 | ptr[9]);
4028 if (ptr + pktrdlength > end) { debugf("GetLargeResourceRecord: RDATA exceeds end of packet"); return(mDNSNULL); }
4029 end = ptr + pktrdlength; // Adjust end to indicate the end of the rdata for this resource record
4034 if (pktrdlength > MaximumRDSize)
4037 DNSTypeName(rr->resrec.rrtype), pktrdlength, rr->resrec.rdata->MaxRDLength);
4048 if (rr->resrec.rrclass == kDNSQClass_ANY && pktrdlength == 0) // Used in update packets to mean "Delete An RRset" (RFC 2136)
4050 else if (!SetRData(msg, ptr, end, &rr->resrec, pktrdlength))