Home | History | Annotate | Download | only in resolv

Lines Matching full:buf1

311  * res_queriesmatch(buf1, eom1, buf2, eom2)
313 * in (buf1,eom1) and (buf2,eom2)?
322 res_queriesmatch(const u_char *buf1, const u_char *eom1,
325 const u_char *cp = buf1 + HFIXEDSZ;
326 int qdcount = ntohs(((const HEADER*)(const void *)buf1)->qdcount);
328 if (buf1 + HFIXEDSZ > eom1 || buf2 + HFIXEDSZ > eom2)
335 if ((((const HEADER *)(const void *)buf1)->opcode == ns_o_update) &&
345 n = dn_expand(buf1, eom1, cp, tname, sizeof tname);