]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Change fast-server-num default to 3.
authorRalph Dolmans <ralph@nlnetlabs.nl>
Mon, 22 Oct 2018 09:36:36 +0000 (09:36 +0000)
committerRalph Dolmans <ralph@nlnetlabs.nl>
Mon, 22 Oct 2018 09:36:36 +0000 (09:36 +0000)
git-svn-id: file:///svn/unbound/trunk@4941 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
doc/example.conf.in
doc/unbound.conf.5.in
util/config_file.c

index 6a204501e875659993fda904842480a6140b4ea5..85e05a6acef83f1a3a6d57daac616a17479864d5 100644 (file)
@@ -1,3 +1,6 @@
+22 October 2018: Ralph
+       - Change fast-server-num default to 3.
+
 8 October 2018: Ralph
        - Add fast-server-permil and fast-server-num options.
        - Deprecate low-rtt and low-rtt-permil options.
index 6bde88d4f228f33dd2420dffaa9e4f9a30c02c9f..5a55d4c0c651ea1eac2fee60025c0238c59b920f 100644 (file)
@@ -761,7 +761,7 @@ server:
        # the fast server select is disabled. prefetches are not sped up.
        # fast-server-permil: 0
        # the number of servers that will be used in the fast server selection.
-       # fast-server-num: 4
+       # fast-server-num: 3
        
        # Specific options for ipsecmod. unbound needs to be configured with
        # --enable-ipsecmod for these to take effect.
index 3f8fcf5a0ab9b1ccd845c50307362eef6711e684..13b849c6ff60d123ecede9f549c81155378bca00 100644 (file)
@@ -1404,7 +1404,7 @@ servers set. The default for fast\-server\-permil is 0.
 .B fast\-server\-num: \fI<number>
 Set the number of servers that should be used for fast server selection. Only
 use the fastest specified number of servers with the fast\-server\-permil
-option, that turns this on or off. The default is to use the fastest 4 servers.
+option, that turns this on or off. The default is to use the fastest 3 servers.
 .SS "Remote Control Options"
 In the
 .B remote\-control:
index b06d6285d28f913f5c34de27f8520574b0824ddf..f9df248a255d072b56b299d46cab19833efd9bd4 100644 (file)
@@ -168,7 +168,7 @@ config_create(void)
        if(!(cfg->pidfile = strdup(PIDFILE))) goto error_exit;
        if(!(cfg->target_fetch_policy = strdup("3 2 1 0 0"))) goto error_exit;
        cfg->fast_server_permil = 0;
-       cfg->fast_server_num = 4;
+       cfg->fast_server_num = 3;
        cfg->donotqueryaddrs = NULL;
        cfg->donotquery_localhost = 1;
        cfg->root_hints = NULL;