diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-11-14 14:59:20 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-12-19 10:50:36 +0100 |
| commit | 4de4d76ad1ef1dc52b6e2e03c4fc81d4ea8d467e (patch) | |
| tree | f09aadb416c61c94eb703d950b1689645aad4c4c /wrappers/python/eduvpn_common/loader.py | |
| parent | 2f3a9d0c1687e6f591ccdb7d44a36cdc09359321 (diff) | |
ProxyGuard: Add a restart function
Diffstat (limited to 'wrappers/python/eduvpn_common/loader.py')
| -rw-r--r-- | wrappers/python/eduvpn_common/loader.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py index 8ac6372..11307ef 100644 --- a/wrappers/python/eduvpn_common/loader.py +++ b/wrappers/python/eduvpn_common/loader.py @@ -144,6 +144,12 @@ def initialize_functions(lib: CDLL) -> None: ], HandlerError, ) + lib.ProxyguardRestart.argtypes, lib.ProxyguardRestart.restype = ( + [ + c_int, + ], + c_char_p, + ) lib.ProxyguardTunnel.argtypes, lib.ProxyguardTunnel.restype = ( [ c_int, |
