change VPN mode DNS to use Google's 8.8.8.8

This commit is contained in:
Nathan Freitas 2016-01-20 14:11:48 -05:00
parent 3c4864b843
commit 9af00fe263
1 changed files with 2 additions and 2 deletions

View File

@ -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;