[tor-commits] [orbot/master] change VPN mode DNS to use Google's 8.8.8.8

n8fr8 at torproject.org n8fr8 at torproject.org
Mon Jan 25 17:08:43 UTC 2016


commit 9af00fe26323569641cde93a0b87be8604eae386
Author: Nathan Freitas <nathan at freitas.net>
Date:   Wed Jan 20 14:11:48 2016 -0500

    change VPN mode DNS to use Google's 8.8.8.8
---
 src/org/torproject/android/vpn/OrbotVpnService.java |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/org/torproject/android/vpn/OrbotVpnService.java b/src/org/torproject/android/vpn/OrbotVpnService.java
index 9b039bc..0520f57 100644
--- a/src/org/torproject/android/vpn/OrbotVpnService.java
+++ b/src/org/torproject/android/vpn/OrbotVpnService.java
@@ -75,8 +75,8 @@ public class OrbotVpnService extends VpnService implements Handler.Callback {
     
     private final static boolean mIsLollipop = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP;
     
-    private final static String DEFAULT_ACTUAL_DNS = "208.67.222.222";
-    
+    //this is the actual DNS server we talk with over TCP/IP
+    private final static String DEFAULT_ACTUAL_DNS = "8.8.8.8";//use Google here, or 8.8.4.4 as backup?
     private boolean isRestart = false;
     
 





More information about the tor-commits mailing list