From 5ac7bb0d9d16260d2235820e97ab47943ffc307b Mon Sep 17 00:00:00 2001 From: Jose Bollo Date: Mon, 18 Nov 2019 17:10:53 +0100 Subject: 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 --- src/afb-session.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/afb-session.h') 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); -- cgit 1.2.3-korg