From 457c879ff89bc7f1a8864304974999dba54af9ae Mon Sep 17 00:00:00 2001 From: José Bollo Date: Sun, 22 May 2016 00:29:22 +0200 Subject: Fix AFB_SESSION_CREATE behaviour MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit allows to call methods having AFB_SESSION_CREATE at any time. This commit prepares the future LOA (level of authorization) implementation that wille soon replace the deprecated mechanism of AFB_SESSION_CREATE. Change-Id: Ia3e99186e012fcd55a6c81a7067ab5b4aca21e4d Signed-off-by: José Bollo --- src/afb-api-so.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/afb-api-so.c') diff --git a/src/afb-api-so.c b/src/afb-api-so.c index 408c3f5a..a365294c 100644 --- a/src/afb-api-so.c +++ b/src/afb-api-so.c @@ -108,18 +108,22 @@ static void call_check(struct afb_req req, struct afb_context *context, const st } if ((stag & AFB_SESSION_CREATE) != 0) { - if (!afb_context_create(context)) { + if (afb_context_check_loa(context, 1)) { afb_context_close(context); afb_req_fail(req, "failed", "invalid creation state"); return; } + afb_context_change_loa(context, 1); + afb_context_refresh(context); } if ((stag & (AFB_SESSION_CREATE | AFB_SESSION_RENEW)) != 0) afb_context_refresh(context); - if ((stag & AFB_SESSION_CLOSE) != 0) + if ((stag & AFB_SESSION_CLOSE) != 0) { + afb_context_change_loa(context, 0); afb_context_close(context); + } data.req = req; data.action = verb->callback; -- cgit 1.2.3-korg