From 6b939462fb1064abd42e8cb8316700ec844172ea Mon Sep 17 00:00:00 2001 From: Jeroen Wijenbergh Date: Tue, 6 May 2025 10:31:57 +0200 Subject: All: Remove ProxyGuard integration This should be done in WireGuard-go or in case of a linux a small daemon --- wrappers/python/eduvpn_common/loader.py | 31 ------------------------------- 1 file changed, 31 deletions(-) (limited to 'wrappers/python/eduvpn_common/loader.py') 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, - ) -- cgit v1.2.3