diff options
| author | Arne Schwabe <arne@rfc2549.org> | 2012-12-26 04:58:57 +0100 | 
|---|---|---|
| committer | Arne Schwabe <arne@rfc2549.org> | 2012-12-26 04:58:57 +0100 | 
| commit | 8a94d6c21681896f60054c18e2495ef8c53e6f7c (patch) | |
| tree | 42f3214fe619e402d8f02f2164097e4717d07c16 /src/de/blinkt/openvpn/VpnProfile.java | |
| parent | fd7570835b7e7fdd335b55bc006791ecb402277b (diff) | |
| parent | 58131bfbde80b433992ab2e7deabb0b63aac072e (diff) | |
Return to the old icon, I do not like the new ones yet...
Diffstat (limited to 'src/de/blinkt/openvpn/VpnProfile.java')
| -rw-r--r-- | src/de/blinkt/openvpn/VpnProfile.java | 27 | 
1 files changed, 21 insertions, 6 deletions
| diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java index bdfdd70a..4c3c05f0 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -101,9 +101,16 @@ public class VpnProfile implements  Serializable{  	public boolean mUseDefaultRoutev6=true;  	public String mCustomRoutesv6="";  	public String mKeyPassword=""; +	public boolean mPersistTun = false; +	public String mConnectRetryMax="5"; +	public String mConnectRetry="5"; +	public boolean mUserEditable=true; +	  	static final String MINIVPN = "miniopenvpn"; -	public boolean mPersistTun = false; +	 +	 +  	public void clearDefaults() { @@ -191,11 +198,19 @@ public class VpnProfile implements  Serializable{  		cfg+="verb " + mVerb + "\n"; - - - -		// quit after 5 tries -		cfg+="connect-retry-max 5\n"; +		if(mConnectRetryMax ==null) { +			mConnectRetryMax="5"; +		} +		 +		if(!mConnectRetryMax.equals("-1")) +				cfg+="connect-retry-max " + mConnectRetryMax+ "\n"; +	 +		if(mConnectRetry==null) +			mConnectRetry="5"; +		 +	 +		cfg+="connect-retry " + mConnectRetry + "\n"; +		  		cfg+="resolv-retry 60\n"; | 
