summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2013-05-25 19:17:05 +0200
committerArne Schwabe <arne@rfc2549.org>2013-05-25 19:17:05 +0200
commit5895203271e3098cb4d423e953b06e6a643f97f0 (patch)
tree6691d55348a2cbb3b70125caf1a895814ae8769d
parenta5023ab2a6c00fa8ef6dfc6d58329e0886e0e1c1 (diff)
Doc update
-rw-r--r--src/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl b/src/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl
index 3e0b94e4..6c1624fa 100644
--- a/src/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl
+++ b/src/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl
@@ -12,19 +12,20 @@ interface IOpenVPNAPIService {
void startProfile (String profileUUID);
- /* Use a profile with all certificates etc. embedded */
+ /** Use a profile with all certificates etc. embedded */
boolean addVPNProfile (String name, String config);
- /* start a profile using an config */
+ /** start a profile using an config */
void startVPN (String inlineconfig);
- /* This permission framework is used to avoid confused deputy style attack to the VPN
+ /** This permission framework is used to avoid confused deputy style attack to the VPN
* calling this will give null if the app is allowed to use the external API and an Intent
* that can be launched to request permissions otherwise */
Intent prepare (String packagename);
- /* Used to trigger to the Android VPN permission dialog (VPNService.prepare()) in advance,
- * if this return null OpenVPN for ANdroid already has the permissions */
+ /** Used to trigger to the Android VPN permission dialog (VPNService.prepare()) in advance,
+ * if this return null OpenVPN for ANdroid already has the permissions otherwise you can start the returned Intent
+ * to let OpenVPN for Android request the permission */
Intent prepareVPNService ();
/* Disconnect the VPN */