diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-03-06 19:56:49 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-03-06 19:57:18 +0100 |
| commit | 2388cfa0b517e1ef3e05e278ffcd6d6db981381b (patch) | |
| tree | 7c2ec316cbc64c701b707cee4d5ec45fa6dfe3d4 /wrappers/python/eduvpn_common/loader.py | |
| parent | a2f9a000e635876126ab41a7969973a8f03a109a (diff) | |
Client + Exports + Wrappers: Add peer IPs argument to fd callback
And rename the callback to be closer to what it does
Diffstat (limited to 'wrappers/python/eduvpn_common/loader.py')
| -rw-r--r-- | wrappers/python/eduvpn_common/loader.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py index c7c2233..674c010 100644 --- a/wrappers/python/eduvpn_common/loader.py +++ b/wrappers/python/eduvpn_common/loader.py @@ -6,8 +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, + ProxySetup, DataError, ReadRxBytes, TokenGetter, @@ -132,6 +132,6 @@ def initialize_functions(lib: CDLL) -> None: c_char_p, c_int, c_char_p, - GotProxyFD, + ProxySetup, ProxyReady, ], c_void_p |
