diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-05-20 14:36:00 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-05-20 14:36:00 +0200 |
commit | 376ecb5c8cb9dceb7cd88ea5527292e81712ec25 (patch) | |
tree | 6f00e49697c6553c4f319c0133e0ba2bf9500f6a /src/de/blinkt/openvpn/OpenVPNThread.java | |
parent | 42423ebf890bc51a9d8d24539fb05a200d878885 (diff) |
- Fix missing about
- Fix vpn list saving to sharedpreferences (closes issue #27)
- Version 0.5.5a
Diffstat (limited to 'src/de/blinkt/openvpn/OpenVPNThread.java')
-rw-r--r-- | src/de/blinkt/openvpn/OpenVPNThread.java | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/de/blinkt/openvpn/OpenVPNThread.java b/src/de/blinkt/openvpn/OpenVPNThread.java index dcd5f4ec..503f4c4c 100644 --- a/src/de/blinkt/openvpn/OpenVPNThread.java +++ b/src/de/blinkt/openvpn/OpenVPNThread.java @@ -29,19 +29,7 @@ public class OpenVPNThread implements Runnable { @Override
public void run() {
try {
- Log.i(TAG, "Starting openvpn");
-
- // We try to create the tunnel for several times. The better way
- // is to work with ConnectivityManager, such as trying only when
- // the network is avaiable. Here we just use a counter to keep
- // things simple.
- //for (int attempt = 0; attempt < 10; ++attempt) {
- mService.getHandler().sendEmptyMessage(R.string.connecting);
-
- // Log argv
-
- //OpenVPN.logMessage(0, "argv:" , Arrays.toString(mArgv));
-
+ Log.i(TAG, "Starting openvpn");
startOpenVPNThreadArgs(mArgv);
|