mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-28 13:08:06 +00:00
[master] use cache in delve
3763. [bug] delve: Cache DNSSEC records to avoid the need to re-fetch them when restarting validation. [RT #35476]
This commit is contained in:
parent
1753d3c4d7
commit
f79ee00c69
3
CHANGES
3
CHANGES
@ -1,3 +1,6 @@
|
||||
3763. [bug] delve: Cache DNSSEC records to avoid the need to
|
||||
re-fetch them when restarting validation. [RT #35476]
|
||||
|
||||
3762. [bug] Address build problems with --pkcs11-native +
|
||||
--with-openssl with ECDSA support. [RT #35467]
|
||||
|
||||
|
@ -1525,7 +1525,7 @@ main(int argc, char *argv[]) {
|
||||
dns_name_t *query_name, *response_name;
|
||||
dns_rdataset_t *rdataset;
|
||||
dns_namelist_t namelist;
|
||||
unsigned int resopt;
|
||||
unsigned int resopt, clopt;
|
||||
isc_appctx_t *actx = NULL;
|
||||
isc_taskmgr_t *taskmgr = NULL;
|
||||
isc_socketmgr_t *socketmgr = NULL;
|
||||
@ -1572,8 +1572,9 @@ main(int argc, char *argv[]) {
|
||||
#endif
|
||||
|
||||
/* Create client */
|
||||
clopt = DNS_CLIENTCREATEOPT_USECACHE;
|
||||
result = dns_client_createx2(mctx, actx, taskmgr, socketmgr, timermgr,
|
||||
0, &client, srcaddr4, srcaddr6);
|
||||
clopt, &client, srcaddr4, srcaddr6);
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
delve_log(ISC_LOG_ERROR, "dns_client_create: %s",
|
||||
isc_result_totext(result));
|
||||
|
Loading…
x
Reference in New Issue
Block a user