From: Tobias Brunner Date: Thu, 20 Apr 2017 07:33:41 +0000 (+0200) Subject: android: Use a specific action to disconnect from the VPN X-Git-Tag: 5.6.0dr1~24^2~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59693d6c5641b67a7467f0ca2fdce986e4af7daf;p=thirdparty%2Fstrongswan.git android: Use a specific action to disconnect from the VPN --- diff --git a/src/frontends/android/app/src/main/java/org/strongswan/android/logic/CharonVpnService.java b/src/frontends/android/app/src/main/java/org/strongswan/android/logic/CharonVpnService.java index 9e9b6733a7..4ebcb14321 100644 --- a/src/frontends/android/app/src/main/java/org/strongswan/android/logic/CharonVpnService.java +++ b/src/frontends/android/app/src/main/java/org/strongswan/android/logic/CharonVpnService.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012-2016 Tobias Brunner + * Copyright (C) 2012-2017 Tobias Brunner * Copyright (C) 2012 Giuliano Grassi * Copyright (C) 2012 Ralf Sager * HSR Hochschule fuer Technik Rapperswil @@ -64,6 +64,7 @@ import java.util.Locale; public class CharonVpnService extends VpnService implements Runnable, VpnStateService.VpnStateListener { private static final String TAG = CharonVpnService.class.getSimpleName(); + public static final String DISCONNECT_ACTION = "org.strongswan.android.CharonVpnService.DISCONNECT"; public static final String LOG_FILE = "charon.log"; public static final int VPN_STATE_NOTIFICATION_ID = 1; @@ -119,18 +120,25 @@ public class CharonVpnService extends VpnService implements Runnable, VpnStateSe { if (intent != null) { - Bundle bundle = intent.getExtras(); - VpnProfile profile = null; - if (bundle != null) + if (DISCONNECT_ACTION.equals(intent.getAction())) { - profile = mDataSource.getVpnProfile(bundle.getLong(VpnProfileDataSource.KEY_ID)); - if (profile != null) + setNextProfile(null); + } + else + { + Bundle bundle = intent.getExtras(); + VpnProfile profile = null; + if (bundle != null) { - String password = bundle.getString(VpnProfileDataSource.KEY_PASSWORD); - profile.setPassword(password); + profile = mDataSource.getVpnProfile(bundle.getLong(VpnProfileDataSource.KEY_ID)); + if (profile != null) + { + String password = bundle.getString(VpnProfileDataSource.KEY_PASSWORD); + profile.setPassword(password); + } } + setNextProfile(profile); } - setNextProfile(profile); } return START_NOT_STICKY; } diff --git a/src/frontends/android/app/src/main/java/org/strongswan/android/logic/VpnStateService.java b/src/frontends/android/app/src/main/java/org/strongswan/android/logic/VpnStateService.java index 01c1452af1..cd30049f76 100644 --- a/src/frontends/android/app/src/main/java/org/strongswan/android/logic/VpnStateService.java +++ b/src/frontends/android/app/src/main/java/org/strongswan/android/logic/VpnStateService.java @@ -1,6 +1,6 @@ /* - * Copyright (C) 2012-2013 Tobias Brunner - * Hochschule fuer Technik Rapperswil + * Copyright (C) 2012-2017 Tobias Brunner + * HSR Hochschule fuer Technik Rapperswil * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -197,10 +197,11 @@ public class VpnStateService extends Service * VpnService.Builder object the system binds to the service and keeps * bound until the file descriptor of the TUN device is closed. thus * calling stopService() here would not stop (destroy) the service yet, - * instead we call startService() with an empty Intent which shuts down + * instead we call startService() with a specific action which shuts down * the daemon (and closes the TUN device, if any) */ Context context = getApplicationContext(); Intent intent = new Intent(context, CharonVpnService.class); + intent.setAction(CharonVpnService.DISCONNECT_ACTION); context.startService(intent); }