aboutsummaryrefslogtreecommitdiffstats
path: root/include/afb/afb-req-itf.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-05-22 07:54:10 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-05-22 07:54:10 +0200
commitf3a1fb9e40f2d609d128b7a0b3eb3e963cdea0b5 (patch)
tree03453a25f4592da1e1c49ded7bb11c515a4d0845 /include/afb/afb-req-itf.h
parent457c879ff89bc7f1a8864304974999dba54af9ae (diff)
Add verbs for closing and setting LOA
These new verbs are now available to plugins. LOA is the level-of-authorisation. The usage of these new verbs must be protected by a mechanism that is still to be done. Change-Id: Ia591fb6bf9cd16956dc95658c5ba3a24ee4380be Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include/afb/afb-req-itf.h')
-rw-r--r--include/afb/afb-req-itf.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/afb/afb-req-itf.h b/include/afb/afb-req-itf.h
index a3ff9fe0..6984d0fa 100644
--- a/include/afb/afb-req-itf.h
+++ b/include/afb/afb-req-itf.h
@@ -40,6 +40,9 @@ struct afb_req_itf {
void (*addref)(void *closure);
void (*unref)(void *closure);
+
+ void (*session_close)(void *closure);
+ void (*session_set_LOA)(void *closure, unsigned level);
};
struct afb_req {
@@ -123,6 +126,16 @@ static inline void afb_req_unref(struct afb_req req)
return req.itf->unref(req.closure);
}
+static inline void afb_req_session_close(struct afb_req req)
+{
+ return req.itf->session_close(req.closure);
+}
+
+static inline void afb_req_session_set_LOA(struct afb_req req, unsigned level)
+{
+ return req.itf->session_set_LOA(req.closure, level);
+}
+
#include <stdlib.h>
static inline struct afb_req *afb_req_store(struct afb_req req)