diff options
| author | Arne Schwabe <arne@rfc2549.org> | 2012-09-30 23:23:35 +0200 |
|---|---|---|
| committer | Arne Schwabe <arne@rfc2549.org> | 2012-09-30 23:23:35 +0200 |
| commit | 90bf5121a8fc56cf309aed59a9bbd163492df81c (patch) | |
| tree | 47d95d3cf57a9fe9bb7363e0d12a007a33d7f403 /src/de/blinkt/openvpn/VpnProfile.java | |
| parent | 4de7b0c3db7ae6435f7860e31b28af346fe1a79e (diff) | |
Fix deleting a VPN profile from a preference fragment on mobile phones. (closes issue #94)
Diffstat (limited to 'src/de/blinkt/openvpn/VpnProfile.java')
| -rw-r--r-- | src/de/blinkt/openvpn/VpnProfile.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java index 4ac138da..392202b4 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -52,6 +52,8 @@ public class VpnProfile implements Serializable{ protected transient String mTransientPW=null; protected transient String mTransientPCKS12PW=null; private transient PrivateKey mPrivateKey; + protected boolean profileDleted=false; + public static String DEFAULT_DNS1="131.234.137.23"; public static String DEFAULT_DNS2="131.234.137.24"; |
