From: Wouter Wijngaards Date: Mon, 29 Aug 2016 07:11:35 +0000 (+0000) Subject: - Add default root hints for IPv6 E.ROOT-SERVERS.NET, 2001:500:a8::e. X-Git-Tag: release-1.5.10~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=56928896b85de3f1808bbf8c083a8523d8417d49;p=thirdparty%2Funbound.git - Add default root hints for IPv6 E.ROOT-SERVERS.NET, 2001:500:a8::e. git-svn-id: file:///svn/unbound/trunk@3838 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index 74091e7d0..ae122903b 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,6 +1,7 @@ 29 August 2016: Ralph - Fix #777: OpenSSL 1.1.0 compatibility, patch from Sebastian A. Siewior. + - Add default root hints for IPv6 E.ROOT-SERVERS.NET, 2001:500:a8::e. 25 August 2016: Ralph - Clarify local-zone-override entry in unbound.conf.5 diff --git a/iterator/iter_hints.c b/iterator/iter_hints.c index 217dfa257..5fd90177a 100644 --- a/iterator/iter_hints.c +++ b/iterator/iter_hints.c @@ -147,6 +147,7 @@ compile_time_root_prime(int do_ip4, int do_ip6) if(!ah(dp, "B.ROOT-SERVERS.NET.", "2001:500:84::b")) goto failed; if(!ah(dp, "C.ROOT-SERVERS.NET.", "2001:500:2::c")) goto failed; if(!ah(dp, "D.ROOT-SERVERS.NET.", "2001:500:2d::d")) goto failed; + if(!ah(dp, "E.ROOT-SERVERS.NET.", "2001:500:a8::e")) goto failed; if(!ah(dp, "F.ROOT-SERVERS.NET.", "2001:500:2f::f")) goto failed; if(!ah(dp, "H.ROOT-SERVERS.NET.", "2001:500:1::53")) goto failed; if(!ah(dp, "I.ROOT-SERVERS.NET.", "2001:7fe::53")) goto failed;