| /src/external/bsd/unbound/dist/edns-subnet/ |
| subnetmod.c | 394 struct query_info qinf; local 419 qinf = qstate->qinfo; 420 qinf.qname = memdup(qstate->qinfo.qname, 422 if(!qinf.qname) { 427 mrep_entry = query_info_entrysetup(&qinf, data, h); 428 free(qinf.qname); /* if qname 'consumed', it is set to NULL */ 638 struct query_info qinf; local 639 qinf.qname = qstate->qinfo.qname; 640 qinf.qname_len = qstate->qinfo.qname_len; 641 qinf.qtype = qstate->qinfo.qtype [all...] |
| /src/external/bsd/unbound/dist/services/cache/ |
| dns.c | 1208 struct query_info qinf; local 1211 qinf = *msgqinf; 1212 qinf.qname = memdup(msgqinf->qname, msgqinf->qname_len); 1213 if(!qinf.qname) { 1222 h = query_info_hash(&qinf, (uint16_t)flags); 1223 dns_cache_store_msg(env, &qinf, h, rep, leeway, pside, msgrep, 1227 free(qinf.qname);
|
| /src/external/bsd/unbound/dist/daemon/ |
| cachedump.c | 753 struct query_info qinf; local 771 s = load_qinfo(s, &qinf, region); 817 if(!dns_cache_store(&worker->env, &qinf, &rep, 0, 0, 0, NULL, flags,
|
| /src/external/bsd/unbound/dist/iterator/ |
| iter_utils.c | 801 struct query_info qinf; local 802 qinf.qname = name; 803 qinf.qname_len = namelen; 804 qinf.qtype = t; 805 qinf.qclass = c; 806 qinf.local_alias = NULL; 809 return (*qstate->env->detect_cycle)(qstate, &qinf, 1543 iter_stub_fwd_no_cache(struct module_qstate *qstate, struct query_info *qinf, 1560 stub = hints_lookup_stub(qstate->env->hints, qinf->qname, 1561 qinf->qclass, NULL, nolock) [all...] |
| iterator.c | 807 struct query_info qinf; local 810 qinf.qname = qname; 811 qinf.qname_len = qnamelen; 812 qinf.qtype = qtype; 813 qinf.qclass = qclass; 814 qinf.local_alias = NULL; 833 if(!(*qstate->env->add_sub)(qstate, &qinf, NULL, 842 if(!(*qstate->env->attach_sub)(qstate, &qinf, NULL, qflags,
|
| /src/external/bsd/unbound/dist/dnstap/ |
| unbound-dnstap-socket.c | 618 char* maddr=NULL, *qinf=NULL; local 640 qinf = q_of_msg(d->message->query_message); 642 qinf = q_of_msg(d->message->response_message); 649 (qinf?" ":""), (qinf?qinf:"")); 651 free(qinf);
|