diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-04-05 10:05:32 +0200 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-04-05 10:05:32 +0200 |
| commit | c83d10b6813d171bf349da71256d719b9148bde4 (patch) | |
| tree | 96ee789f2d434818dcc0408374eb830e26bd48e8 /wrappers | |
| parent | 93bb4bccdf2b1b201451e0130fbfa90f310dba7b (diff) | |
Add debug variable to save a live fsm graph
Diffstat (limited to 'wrappers')
| -rw-r--r-- | wrappers/python/eduvpncommon/__init__.py | 2 | ||||
| -rw-r--r-- | wrappers/python/eduvpncommon/main.py | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/wrappers/python/eduvpncommon/__init__.py b/wrappers/python/eduvpncommon/__init__.py index 4c1872f..056ce18 100644 --- a/wrappers/python/eduvpncommon/__init__.py +++ b/wrappers/python/eduvpncommon/__init__.py @@ -35,7 +35,7 @@ VPNStateChange = CFUNCTYPE(None, c_char_p, c_char_p, c_char_p) # Exposed functions lib.Connect.argtypes, lib.Connect.restype = [c_char_p], DataError lib.Deregister.argtypes, lib.Deregister.restype = [], None -lib.Register.argtypes, lib.Register.restype = [c_char_p, c_char_p, VPNStateChange], None +lib.Register.argtypes, lib.Register.restype = [c_char_p, c_char_p, VPNStateChange, c_int], c_void_p lib.GetOrganizationsList.argtypes, lib.GetOrganizationsList.restype = [], DataError lib.GetServersList.argtypes, lib.GetServersList.restype = [], DataError # We have to use c_void_p instead of c_char_p to free it properly diff --git a/wrappers/python/eduvpncommon/main.py b/wrappers/python/eduvpncommon/main.py index 16d7baa..e718718 100644 --- a/wrappers/python/eduvpncommon/main.py +++ b/wrappers/python/eduvpncommon/main.py @@ -12,10 +12,10 @@ class StateType(Enum): # 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, config_directory, state_callback): +def Register(name, config_directory, state_callback, debug): name_bytes = name.encode("utf-8") dir_bytes = config_directory.encode("utf-8") - ptr_err = lib.Register(name_bytes, dir_bytes, state_callback) + ptr_err = lib.Register(name_bytes, dir_bytes, state_callback, debug) err_string = GetPtrString(ptr_err) return err_string @@ -57,8 +57,8 @@ class EduVPN(object): def __del__(self): Deregister() - def register(self) -> bool: - return Register(self.name, self.config_directory, callback_function) == "" + def register(self, debug=False) -> bool: + return Register(self.name, self.config_directory, callback_function, debug) == "" def get_disco(self): return GetDiscoServers() |
