aboutsummaryrefslogtreecommitdiffstats
path: root/include/afb/afb-binding-v2.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-04-25 16:06:31 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-04-25 16:06:31 +0200
commitb3f3b90ebfa55f731393b2096dccfae570f22d6f (patch)
treef60c4c9de5bdee00c6b3fd273080e779e67d4c43 /include/afb/afb-binding-v2.h
parent3ffd607b9321c9a7f1c483d4a5e5e4f9e5abbc03 (diff)
Make monitor use the interface version 2
Enforce monitor API to be a kind of standard binding. Change-Id: I4739f879d5e076eb3505f5fe2cf658e6f9299de6 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include/afb/afb-binding-v2.h')
-rw-r--r--include/afb/afb-binding-v2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/afb/afb-binding-v2.h b/include/afb/afb-binding-v2.h
index 1f47e219..97956411 100644
--- a/include/afb/afb-binding-v2.h
+++ b/include/afb/afb-binding-v2.h
@@ -37,7 +37,7 @@ struct afb_verb_v2
{
const char *verb; /* name of the verb */
void (*callback)(struct afb_req req); /* callback function implementing the verb */
- const char * const *permissions; /* required permissions */
+ const char * permissions; /* required permissions */
enum afb_session_v1 session; /* authorisation and session requirements of the verb */
};