summaryrefslogtreecommitdiff
path: root/www/chromium-uc/patches/core/inox-patchset/0009-disable-google-ipv6-probes.patch
blob: 9f78ade8e44702b1e6f4b7065ed208a6b23d9874 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- net/dns/host_resolver_manager.cc.orig
+++ net/dns/host_resolver_manager.cc
@@ -139,10 +139,10 @@ const unsigned kMinimumTTLSeconds = kCac
 // cached.
 const int kIPv6ProbePeriodMs = 1000;
 
-// Google DNS address used for IPv6 probes.
-const uint8_t kIPv6ProbeAddress[] = {0x20, 0x01, 0x48, 0x60, 0x48, 0x60,
+// RIPE NCC k.root-servers.net. 2001:7fd::1 (anycasted), used for IPv6 probes.
+const uint8_t kIPv6ProbeAddress[] = {0x20, 0x01, 0x07, 0xfd, 0x00, 0x00,
                                      0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-                                     0x00, 0x00, 0x88, 0x88};
+                                     0x00, 0x00, 0x00, 0x01};
 
 enum DnsResolveStatus {
   RESOLVE_STATUS_DNS_SUCCESS = 0,