diff options
author | Thomas Crusius <thomas.crusius@mobiworx.de> | 2024-08-05 09:57:37 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2024-08-05 15:35:50 +0200 |
commit | ad7dfd597299f6cdf339ca924621733d3edecb0d (patch) | |
tree | eb4e9acf2c66f4816b2da581f28df3a333d483a7 /remoteExample/src/main/aidl | |
parent | 0df320119c21410f5effc5f0a21294fc788f62a7 (diff) |
enhance AIDL-API to allow passing extras during profile-import
Diffstat (limited to 'remoteExample/src/main/aidl')
-rw-r--r-- | remoteExample/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/remoteExample/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl b/remoteExample/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl index 273a0046..1989b771 100644 --- a/remoteExample/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl +++ b/remoteExample/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl @@ -63,4 +63,10 @@ interface IOpenVPNAPIService { /** Use a profile with all certificates etc. embedded */
APIVpnProfile addNewVPNProfile (String name, boolean userEditable, String config);
+
+ /** Same as addNewVPNProfile(String, boolean, String) but giving possibility to pass a Bundle like
+ * in startVPNwithExtras(String, Bundle) to apply e.g. "allow vpn bypass" to profile.
+ * up to now the only extra that can be put is a boolean "de.blinkt.openvpn.api.ALLOW_VPN_BYPASS"
+ */
+ APIVpnProfile addNewVPNProfileWithExtras (String name, boolean userEditable, String config, in Bundle extras);
}
\ No newline at end of file |