summaryrefslogtreecommitdiff
path: root/wrappers/python/src/main.py
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-08-10 11:55:43 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-08-10 11:55:43 +0200
commit557cb4aa3ecb48800957c0f9f68571a11746d9fb (patch)
tree05f6b51dca42a2b1876adfc7a908c8a06aa2de58 /wrappers/python/src/main.py
parent93a95d4be4d754a901ab42a8174ae0e725680a01 (diff)
State + Python: Implement renewing a session
Diffstat (limited to 'wrappers/python/src/main.py')
-rw-r--r--wrappers/python/src/main.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/wrappers/python/src/main.py b/wrappers/python/src/main.py
index a2a0d14..ac44073 100644
--- a/wrappers/python/src/main.py
+++ b/wrappers/python/src/main.py
@@ -207,5 +207,11 @@ class EduVPN(object):
if location_err:
raise Exception(location_err)
+ def renew_session(self) -> None:
+ renew_err = self.go_function(lib.RenewSession)
+
+ if renew_err:
+ raise Exception(renew_err)
+
def should_renew_button(self) -> bool:
return self.go_function(lib.ShouldRenewButton)