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

commit 9af00fe26323569641cde93a0b87be8604eae386 Author: Nathan Freitas <nathan@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;
participants (1)
-
n8fr8@torproject.org