Lines Matching refs:reppkt
307 struct reply_packet* reppkt = entry->reply_list; in count_reply_packets() local
308 while(reppkt) { in count_reply_packets()
310 reppkt = reppkt->next; in count_reply_packets()
322 struct reply_packet* reppkt; in fill_buffer_with_reply() local
327 reppkt = entry->reply_list; in fill_buffer_with_reply()
330 while(reppkt && i--) in fill_buffer_with_reply()
331 reppkt = reppkt->next; in fill_buffer_with_reply()
332 if(!reppkt) fatal_exit("extra packet read from TCP stream but none is available"); in fill_buffer_with_reply()
333 log_pkt("extra_packet ", reppkt->reply_pkt, reppkt->reply_len); in fill_buffer_with_reply()
335 if(reppkt->reply_from_hex) { in fill_buffer_with_reply()
336 c = sldns_buffer_begin(reppkt->reply_from_hex); in fill_buffer_with_reply()
337 clen = sldns_buffer_limit(reppkt->reply_from_hex); in fill_buffer_with_reply()
340 c = reppkt->reply_pkt; in fill_buffer_with_reply()
341 clen = reppkt->reply_len; in fill_buffer_with_reply()