From: Wouter Wijngaards Date: Sun, 12 Jun 2011 09:51:00 +0000 (+0000) Subject: IPv6 service address for d.root-servers.net (2001:500:2D::D) X-Git-Tag: release-1.4.11rc1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=608f82a1cd876149f765d36cb4357dec318e1347;p=thirdparty%2Funbound.git IPv6 service address for d.root-servers.net (2001:500:2D::D) git-svn-id: file:///svn/unbound/trunk@2426 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index 1d82ff833..e22cb21fa 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +12 June 2011: Wouter + - IPv6 service address for d.root-servers.net (2001:500:2D::D). + 10 June 2011: Wouter - unbound-control has version number in the header, UBCT[version]_space_ is the header sent by the client now. diff --git a/iterator/iter_hints.c b/iterator/iter_hints.c index 9dde89c70..05dae81f0 100644 --- a/iterator/iter_hints.c +++ b/iterator/iter_hints.c @@ -132,6 +132,7 @@ compile_time_root_prime(struct regional* r, int do_ip4, int do_ip6) } if(do_ip6) { if(!ah(dp, r, "A.ROOT-SERVERS.NET.", "2001:503:ba3e::2:30")) return 0; + if(!ah(dp, r, "D.ROOT-SERVERS.NET.", "2001:500:2d::d")) return 0; if(!ah(dp, r, "F.ROOT-SERVERS.NET.", "2001:500:2f::f")) return 0; if(!ah(dp, r, "H.ROOT-SERVERS.NET.", "2001:500:1::803f:235")) return 0; if(!ah(dp, r, "I.ROOT-SERVERS.NET.", "2001:7fe::53")) return 0;