aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-session.h
diff options
context:
space:
mode:
authorJose Bollo <jose.bollo@iot.bzh>2019-11-18 17:10:53 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2019-11-29 12:48:17 +0100
commit5ac7bb0d9d16260d2235820e97ab47943ffc307b (patch)
tree5ae85a33b799bc796018c6877fd33138069f12c5 /src/afb-session.h
parentd735ff81293a2de1860a99afef891ac3fc6c1c09 (diff)
afb-session: remove initial token
Tokens are no more managed by the binder. Bug-AGL: SPEC-2968 Change-Id: Idf1c38105f8ede82cd0ed43aeae3e8e69b9845a3 Signed-off-by: Jose Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-session.h')
-rw-r--r--src/afb-session.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/afb-session.h b/src/afb-session.h
index bd1c47c7..4837c494 100644
--- a/src/afb-session.h
+++ b/src/afb-session.h
@@ -23,9 +23,8 @@ struct afb_session;
#define AFB_SESSION_TIMEOUT_DEFAULT -2
#define AFB_SESSION_TIMEOUT_IS_VALID(x) ((x) >= AFB_SESSION_TIMEOUT_DEFAULT)
-extern int afb_session_init(int max_session_count, int timeout, const char *initok);
+extern int afb_session_init(int max_session_count, int timeout);
extern void afb_session_purge();
-extern const char *afb_session_initial_token();
extern void afb_session_foreach(void (*callback)(void *closure, struct afb_session *session), void *closure);
extern struct afb_session *afb_session_create (int timeout);