summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wrappers/python/eduvpncommon/__init__.py2
-rw-r--r--wrappers/python/eduvpncommon/main.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/wrappers/python/eduvpncommon/__init__.py b/wrappers/python/eduvpncommon/__init__.py
index a5efb40..b79c980 100644
--- a/wrappers/python/eduvpncommon/__init__.py
+++ b/wrappers/python/eduvpncommon/__init__.py
@@ -22,7 +22,7 @@ lib = cdll.LoadLibrary(str(pathlib.Path(__file__).parent / "lib" / _libfile))
VPNStateChange = CFUNCTYPE(None, c_char_p, c_char_p, c_char_p)
# Exposed functions
-lib.Register.argtypes, lib.Register.restype = [c_char_p, VPNStateChange], None
+lib.Register.argtypes, lib.Register.restype = [c_char_p, c_char_p, VPNStateChange], None
# We have to use c_void_p instead of c_char_p to free it properly
# See https://stackoverflow.com/questions/13445568/python-ctypes-how-to-free-memory-getting-invalid-pointer-error
lib.FreeString.argtypes, lib.FreeString.restype = [c_void_p], None
diff --git a/wrappers/python/eduvpncommon/main.py b/wrappers/python/eduvpncommon/main.py
index f7afa17..3bb0c48 100644
--- a/wrappers/python/eduvpncommon/main.py
+++ b/wrappers/python/eduvpncommon/main.py
@@ -5,12 +5,12 @@ from ctypes import *
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
+# 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, config_directory, state_callback):
name_bytes = name.encode('utf-8')
dir_bytes = config_directory.encode('utf-8')
- lib.Register(name_bytes, config_directory, state_callback)
+ lib.Register(name_bytes, dir_bytes, state_callback)