From: Wouter Wijngaards Date: Fri, 25 Jan 2008 09:53:04 +0000 (+0000) Subject: test for async. X-Git-Tag: release-0.9~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7bfaf0798100c21803646e4af9403404c3540cd5;p=thirdparty%2Funbound.git test for async. git-svn-id: file:///svn/unbound/trunk@896 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index fd0c7b4f0..f286979df 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +25 January 2008: Wouter + - added tpkg for asynclook and library use. + - allows localhost to be queried when as a library. + 24 January 2008: Wouter - tested the cancel() function. - asynclook -c (cancel) feature. diff --git a/testdata/05-asynclook.tpkg b/testdata/05-asynclook.tpkg new file mode 100644 index 000000000..92be7cf55 Binary files /dev/null and b/testdata/05-asynclook.tpkg differ diff --git a/util/config_file.c b/util/config_file.c index 34fe2d0be..bb16b610f 100644 --- a/util/config_file.c +++ b/util/config_file.c @@ -132,6 +132,8 @@ config_create() cfg->local_zones = NULL; cfg->local_zones_nodefault = NULL; cfg->local_data = NULL; + cfg->donotquery_localhost = 0; /* allow, so that you can ask a + forward nameserver running on localhost */ if(!(cfg->module_conf = strdup("validator iterator"))) goto error_exit; if(!(cfg->val_nsec3_key_iterations = strdup("1024 150 2048 500 4096 2500"))) goto error_exit;