From: Wouter Wijngaards Date: Mon, 7 Apr 2014 08:18:39 +0000 (+0000) Subject: - C.ROOT-SERVERS.NET has an IPv6 address, and we updated the root X-Git-Tag: release-1.5.0rc1~156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6c714c979692e21af3dee549fcb58472ac838c4;p=thirdparty%2Funbound.git - C.ROOT-SERVERS.NET has an IPv6 address, and we updated the root hints (patch from Anand Buddhdev). git-svn-id: file:///svn/unbound/trunk@3102 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index a74dd6bbc..bcfb6ebc6 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +7 April 2014: Wouter + - C.ROOT-SERVERS.NET has an IPv6 address, and we updated the root + hints (patch from Anand Buddhdev). + 28 March 2014: Wouter - Fix #569: do_tcp is do-tcp in unbound.conf man page. diff --git a/iterator/iter_hints.c b/iterator/iter_hints.c index 7fa07a729..27ce01223 100644 --- a/iterator/iter_hints.c +++ b/iterator/iter_hints.c @@ -144,6 +144,7 @@ compile_time_root_prime(int do_ip4, int do_ip6) } if(do_ip6) { if(!ah(dp, "A.ROOT-SERVERS.NET.", "2001:503:ba3e::2:30")) 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, "F.ROOT-SERVERS.NET.", "2001:500:2f::f")) goto failed; if(!ah(dp, "H.ROOT-SERVERS.NET.", "2001:500:1::803f:235")) goto failed;