aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFulup Ar Foll <fulup@iot.bzh>2016-05-25 22:22:54 +0200
committerFulup Ar Foll <fulup@iot.bzh>2016-05-25 22:22:54 +0200
commit8fe5d03591acdd6d9770a10280f54f3e3c1621cb (patch)
treeb8e95e523e356d6121645dcfe4cf8b3e8ebca4db
parent577bdc0e39332d721c3cdb1f4f194c4335a5dba9 (diff)
Set LOA Sample
-rw-r--r--plugins/session/token-api.c4
1 files 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) {