summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2016-11-26 01:04:17 +0100
committerArne Schwabe <arne@rfc2549.org>2016-11-26 01:04:17 +0100
commit54c400b1c23ceeee0d24163aad5f55b75db981bd (patch)
tree00d6b048a485d37aa69386c02b44d6888b87e2bb
parent6bb7be22ce74348f956feb4b713058df8f6c446e (diff)
Replace example of openvpn.blinkt.de with openvpn.example.com to avoid confusing and people trying to connect to that server
-rw-r--r--main/src/main/java/de/blinkt/openvpn/VpnProfile.java2
-rw-r--r--main/src/main/java/de/blinkt/openvpn/core/Connection.java2
-rw-r--r--main/src/main/res/layout/server_card.xml2
3 files changed, 3 insertions, 3 deletions
diff --git a/main/src/main/java/de/blinkt/openvpn/VpnProfile.java b/main/src/main/java/de/blinkt/openvpn/VpnProfile.java
index 5b9445be..dbec98e4 100644
--- a/main/src/main/java/de/blinkt/openvpn/VpnProfile.java
+++ b/main/src/main/java/de/blinkt/openvpn/VpnProfile.java
@@ -167,7 +167,7 @@ public class VpnProfile implements Serializable, Cloneable {
public int mVersion=0;
/* Options no longer used in new profiles */
- public String mServerName = "openvpn.blinkt.de";
+ public String mServerName = "openvpn.example.com";
public String mServerPort = "1194";
public boolean mUseUdp = true;
diff --git a/main/src/main/java/de/blinkt/openvpn/core/Connection.java b/main/src/main/java/de/blinkt/openvpn/core/Connection.java
index 04a5f6f0..72cc2cd5 100644
--- a/main/src/main/java/de/blinkt/openvpn/core/Connection.java
+++ b/main/src/main/java/de/blinkt/openvpn/core/Connection.java
@@ -10,7 +10,7 @@ import android.text.TextUtils;
import java.io.Serializable;
public class Connection implements Serializable, Cloneable {
- public String mServerName = "openvpn.blinkt.de";
+ public String mServerName = "openvpn.example.com";
public String mServerPort = "1194";
public boolean mUseUdp = true;
public String mCustomConfiguration = "";
diff --git a/main/src/main/res/layout/server_card.xml b/main/src/main/res/layout/server_card.xml
index acc07409..e24a8fd7 100644
--- a/main/src/main/res/layout/server_card.xml
+++ b/main/src/main/res/layout/server_card.xml
@@ -71,7 +71,7 @@
android:layout_toStartOf="@id/portnumber"
android:inputType="textUri"
android:singleLine="true"
- android:text="openvpn.blinkt.de"
+ tools:text="openvpn.blinkt.de"
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
tools:ignore="HardcodedText" />