summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpn_common
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-24 14:05:45 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-24 14:05:45 +0200
commit01cbb80b300f92c3456d3b2965630c0783607905 (patch)
treead162c4bc4bf5ebafac0d4ba44147437604c82d3 /wrappers/python/eduvpn_common
parent56f084389a3eb6b34df86af347ce60acdeb6106b (diff)
Client + Server + Exports: Implement optional WireGuard support
Diffstat (limited to 'wrappers/python/eduvpn_common')
-rw-r--r--wrappers/python/eduvpn_common/loader.py4
-rw-r--r--wrappers/python/eduvpn_common/main.py12
2 files changed, 16 insertions, 0 deletions
diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py
index fc3d090..9463ab1 100644
--- a/wrappers/python/eduvpn_common/loader.py
+++ b/wrappers/python/eduvpn_common/loader.py
@@ -152,4 +152,8 @@ def initialize_functions(lib: CDLL) -> None:
c_char_p,
c_char_p,
], c_void_p
+ lib.SetSupportWireguard.argtypes, lib.SetSupportWireguard.restype = [
+ c_char_p,
+ c_int,
+ ], c_void_p
lib.ShouldRenewButton.argtypes, lib.ShouldRenewButton.restype = [], int
diff --git a/wrappers/python/eduvpn_common/main.py b/wrappers/python/eduvpn_common/main.py
index 69d00db..1467adb 100644
--- a/wrappers/python/eduvpn_common/main.py
+++ b/wrappers/python/eduvpn_common/main.py
@@ -440,6 +440,18 @@ class EduVPN(object):
if renew_err:
raise renew_err
+ def set_support_wireguard(self, support: bool) -> None:
+ """Indicates whether or not the OS supports WireGuard connections.
+
+ :param support: bool: whether or not wireguard is supported
+
+ :raises WrappedError: An error by the Go library
+ """
+ support_err = self.go_function(self.lib.SetSupportWireguard, support)
+
+ if support_err:
+ raise support_err
+
def should_renew_button(self) -> bool:
"""Whether or not the UI should show the renew button