diff options
Diffstat (limited to 'wrappers/python/eduvpncommon/main.py')
| -rw-r--r-- | wrappers/python/eduvpncommon/main.py | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/wrappers/python/eduvpncommon/main.py b/wrappers/python/eduvpncommon/main.py index b8278ad..f7afa17 100644 --- a/wrappers/python/eduvpncommon/main.py +++ b/wrappers/python/eduvpncommon/main.py @@ -1,22 +1,16 @@ -from . import lib, GOCB_StateChange +from . import lib, VPNStateChange from ctypes import * -@GOCB_StateChange -def state_change(old, new): - print(f"Python: State change {old.decode()} {new.decode()}") - -def InitializeOAuth(): - ptr = lib.InitializeOAuth() - value = cast(ptr, c_char_p).value - authURL = value.decode() - lib.FreeString(ptr) - return authURL +@VPNStateChange +def state_change(old, new, data): + print(f"Python: State change {old.decode()} {new.decode()} DATA {data.decode()}") # Registers the python app with the GO code # name: The name of the app to be registered # url: The url of the server to connect to, FIXME: To be removed # state_callback: The callback to trigger whenever a state is changed, FIXME: Remove whenever this wrapper has implemented callbacks using function decorations -def Register(name, url, state_callback): +def Register(name, config_directory, state_callback): name_bytes = name.encode('utf-8') - url_bytes = url.encode('utf-8') - lib.Register(name_bytes, url_bytes, state_callback) + dir_bytes = config_directory.encode('utf-8') + lib.Register(name_bytes, config_directory, state_callback) + |
