From 8fe5d03591acdd6d9770a10280f54f3e3c1621cb Mon Sep 17 00:00:00 2001 From: Fulup Ar Foll Date: Wed, 25 May 2016 22:22:54 +0200 Subject: [PATCH] Set LOA Sample --- plugins/session/token-api.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/session/token-api.c b/plugins/session/token-api.c index 0109f391..783e96ed 100644 --- a/plugins/session/token-api.c +++ b/plugins/session/token-api.c @@ -49,7 +49,7 @@ static void clientContextLogin (struct afb_req request) afb_req_success(request, jresp, NULL); - setLOA(request, 1); + afb_req_session_set_LOA(request, 1); } // Before entering here token will be check and renew @@ -89,7 +89,7 @@ static void clientContextLogout (struct afb_req request) { // WARNING: if you free context resource manually here do not forget to set *request.context=NULL; afb_req_success(request, jresp, NULL); - setLOA(request, 0); + afb_req_session_set_LOA(request, 0); } // Close and Free context static void clientGetPing (struct afb_req request) { -- 2.16.6