diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-02-22 16:04:05 +0100 |
|---|---|---|
| committer | Jeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com> | 2024-02-23 10:40:50 +0100 |
| commit | eb0c7e7251a0038963436dcd77e6d92311f0bf8f (patch) | |
| tree | 1381a84baee5f4588750941fd299bfe3c0e11c38 /wrappers/python/eduvpn_common/loader.py | |
| parent | 84d3ab740d0637a88537e54110b8a6486c3bd118 (diff) | |
Wrappers Python: Add necessary callbacks for proxyguard
Diffstat (limited to 'wrappers/python/eduvpn_common/loader.py')
| -rw-r--r-- | wrappers/python/eduvpn_common/loader.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py index d608e71..c7c2233 100644 --- a/wrappers/python/eduvpn_common/loader.py +++ b/wrappers/python/eduvpn_common/loader.py @@ -6,6 +6,8 @@ from ctypes import CDLL, c_char_p, c_int, c_void_p, cdll from eduvpn_common import __version__ from eduvpn_common.types import ( BoolError, + GotProxyFD, + ProxyReady, DataError, ReadRxBytes, TokenGetter, @@ -130,5 +132,6 @@ def initialize_functions(lib: CDLL) -> None: c_char_p, c_int, c_char_p, - c_void_p, + GotProxyFD, + ProxyReady, ], c_void_p |
