Searched refs:new_rep (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/unbound/respip/ |
| H A D | respip.c | 681 struct reply_info* new_rep; in respip_data_answer() local 733 new_rep = make_new_reply_info(rep, region, rrset_id + 1, rrset_id); in respip_data_answer() 734 if(!new_rep) in respip_data_answer() 737 new_rep->rrsets[rrset_id] = rp; in respip_data_answer() 740 *new_repp = new_rep; in respip_data_answer() 765 struct reply_info* new_rep; in respip_nodata_answer() local 768 new_rep = make_new_reply_info(rep, region, 0, 0); in respip_nodata_answer() 769 if(!new_rep) in respip_nodata_answer() 771 FLAGS_SET_RCODE(new_rep->flags, LDNS_RCODE_REFUSED); in respip_nodata_answer() 772 *new_repp = new_rep; in respip_nodata_answer() [all …]
|
| /freebsd/contrib/unbound/util/data/ |
| H A D | msgreply.c | 209 struct reply_info* new_rep; in make_new_reply_info() local 217 new_rep = construct_reply_info_base(region, rep->flags, in make_new_reply_info() 222 if(!new_rep) in make_new_reply_info() 224 if(!reply_info_alloc_rrset_keys(new_rep, NULL, region)) in make_new_reply_info() 227 new_rep->rrsets[i] = rep->rrsets[i]; in make_new_reply_info() 229 return new_rep; in make_new_reply_info()
|