diff options
author | cyBerta <cyberta@riseup.net> | 2024-12-10 00:03:28 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2024-12-10 00:03:28 +0100 |
commit | b1c21e7e1fbc0d09e3d121b89651482a0bb02efd (patch) | |
tree | 33efa5d28e396dbfceff9d5086db476ecb1f2eed /remoteExample/src/main | |
parent | 14d655f2936be93b15c09278e91367f4e43890c8 (diff) | |
parent | 2af49fc272d8108b9557735bf843465e52559917 (diff) |
Merge branch 'schwabe_master' into ssh_new_masternew_master
Diffstat (limited to 'remoteExample/src/main')
-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 |