diff --git a/doc/Changelog b/doc/Changelog index 33e6cdaa1..cc644ba13 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +3 June 2014: Wouter + - Add AAAA for B root server to default root hints. + 2 June 2014: Wouter - Remove unused define from iterator.h diff --git a/iterator/iter_hints.c b/iterator/iter_hints.c index 27ce01223..57b57c2e0 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, "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, "F.ROOT-SERVERS.NET.", "2001:500:2f::f")) goto failed;