From 565237c14a303a46d62d240b35c6f0082424256a Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Tue, 11 Oct 2022 10:19:56 +0200 Subject: Client: Refactor out adding a Server from getting a config --- wrappers/python/eduvpn_common/loader.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'wrappers/python/eduvpn_common/loader.py') diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py index 0192815..23851f3 100644 --- a/wrappers/python/eduvpn_common/loader.py +++ b/wrappers/python/eduvpn_common/loader.py @@ -91,6 +91,18 @@ def initialize_functions(lib): c_char_p, c_char_p, ], c_void_p + lib.AddInstituteAccess.argtypes, lib.AddInstituteAccess.restype = [ + c_char_p, + c_char_p, + ], c_void_p + lib.AddSecureInternetHomeServer.argtypes, lib.AddSecureInternetHomeServer.restype = [ + c_char_p, + c_char_p, + ], c_void_p + lib.AddCustomServer.argtypes, lib.AddCustomServer.restype = [ + c_char_p, + c_char_p, + ], c_void_p lib.RemoveInstituteAccess.argtypes, lib.RemoveInstituteAccess.restype = [ c_char_p, c_char_p, -- cgit v1.2.3