summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/api
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2013-12-01 14:14:24 +0100
committerArne Schwabe <arne@rfc2549.org>2013-12-01 14:14:24 +0100
commite827c55cdd14588585b1d12e4f8cba0ffb69381d (patch)
tree96d044d71ac7fd12a1167314d9385316ea8f3a2f /src/de/blinkt/openvpn/api
parentd5e947f2dd9ba93a4bb6a801d0ef8ad21d43d8d2 (diff)
Implementing user pause/resume from the external API
Diffstat (limited to 'src/de/blinkt/openvpn/api')
-rw-r--r--src/de/blinkt/openvpn/api/ExternalOpenVPNService.java15
-rw-r--r--src/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl6
2 files changed, 21 insertions, 0 deletions
diff --git a/src/de/blinkt/openvpn/api/ExternalOpenVPNService.java b/src/de/blinkt/openvpn/api/ExternalOpenVPNService.java
index 34b61325..765bc23d 100644
--- a/src/de/blinkt/openvpn/api/ExternalOpenVPNService.java
+++ b/src/de/blinkt/openvpn/api/ExternalOpenVPNService.java
@@ -217,6 +217,21 @@ public class ExternalOpenVPNService extends Service implements StateListener {
if (mService != null && mService.getManagement() != null)
mService.getManagement().stopVPN();
}
+
+ @Override
+ public void pause() throws RemoteException {
+ checkOpenVPNPermission();
+ if (mService != null)
+ mService.userPause(true);
+ }
+
+ @Override
+ public void resume() throws RemoteException {
+ checkOpenVPNPermission();
+ if (mService != null)
+ mService.userPause(false);
+
+ }
};
diff --git a/src/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl b/src/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl
index 6c1624fa..794e3aad 100644
--- a/src/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl
+++ b/src/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl
@@ -30,6 +30,12 @@ interface IOpenVPNAPIService {
/* Disconnect the VPN */
void disconnect();
+
+ /* Pause the VPN (same as using the pause feature in the notifcation bar) */
+ void pause();
+
+ /* Resume the VPN (same as using the pause feature in the notifcation bar) */
+ void resume();
/**
* Registers to receive OpenVPN Status Updates