summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2014-11-14 16:58:11 +0100
committerArne Schwabe <arne@rfc2549.org>2014-11-14 16:58:11 +0100
commit8935ebe6c3c7b70d9052a83063cb3da2cb5a238f (patch)
tree6f4624a303e041d74146a141dabe21909cc53a7a
parent747964be8d868920ddaeaf5f724007d70ed4f41b (diff)
Fix AIDL from external apps.
-rw-r--r--main/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl b/main/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl
index f1c108ea..06545bd7 100644
--- a/main/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl
+++ b/main/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl
@@ -14,9 +14,6 @@ interface IOpenVPNAPIService {
/** Use a profile with all certificates etc. embedded */
boolean addVPNProfile (String name, String config);
-
- /** Remove a profile by UUID */
- void removeProfile (String profileUUID);
/** start a profile using an config */
void startVPN (String inlineconfig);
@@ -49,5 +46,8 @@ interface IOpenVPNAPIService {
* Remove a previously registered callback interface.
*/
void unregisterStatusCallback(IOpenVPNStatusCallback cb);
+
+ /** Remove a profile by UUID */
+ void removeProfile (String profileUUID);
} \ No newline at end of file