diff options
| author | Jeroen Wijenbergh <jeroen.wijenbergh@geant.org> | 2025-05-06 10:31:57 +0200 |
|---|---|---|
| committer | Jeroen Wijenbergh <jeroen.wijenbergh@geant.org> | 2025-05-06 13:25:48 +0200 |
| commit | 6b939462fb1064abd42e8cb8316700ec844172ea (patch) | |
| tree | b572daecdf0f25e3beec9883a8b7bb2522628212 /wrappers/python/eduvpn_common/loader.py | |
| parent | 347b20fc91505584bc9efbeca89590a411b95e79 (diff) | |
All: Remove ProxyGuard integration
This should be done in WireGuard-go or in case of a linux a small daemon
Diffstat (limited to 'wrappers/python/eduvpn_common/loader.py')
| -rw-r--r-- | wrappers/python/eduvpn_common/loader.py | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py index 11307ef..6957c15 100644 --- a/wrappers/python/eduvpn_common/loader.py +++ b/wrappers/python/eduvpn_common/loader.py @@ -6,7 +6,6 @@ from eduvpn_common.types import ( BoolError, DataError, HandlerError, - ProxySetup, ReadRxBytes, RefreshList, TokenGetter, @@ -134,33 +133,3 @@ def initialize_functions(lib: CDLL) -> None: ], BoolError, ) - lib.NewProxyguard.argtypes, lib.NewProxyguard.restype = ( - [ - c_int, - c_int, - c_int, - c_char_p, - ProxySetup, - ], - HandlerError, - ) - lib.ProxyguardRestart.argtypes, lib.ProxyguardRestart.restype = ( - [ - c_int, - ], - c_char_p, - ) - lib.ProxyguardTunnel.argtypes, lib.ProxyguardTunnel.restype = ( - [ - c_int, - c_int, - c_int, - ], - c_char_p, - ) - lib.ProxyguardPeerIPs.argtypes, lib.ProxyguardPeerIPs.restype = ( - [ - c_int, - ], - DataError, - ) |
