X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-session.c;h=17fddd5c79fe5b234a29ee0b971b8c9678dd9c74;hb=e97aa93b02793018d7d9cad1582748b02493dad2;hp=bc1c1c5f7d415380fbb9f9a763865dd315709dee;hpb=7d21e07e79bd97b341d489746cc325107153a24b;p=src%2Fapp-framework-binder.git diff --git a/src/afb-session.c b/src/afb-session.c index bc1c1c5f..17fddd5c 100644 --- a/src/afb-session.c +++ b/src/afb-session.c @@ -47,7 +47,6 @@ struct cookie struct afb_session { unsigned refcount; - unsigned loa; int timeout; time_t expiration; // expiration time of the token time_t access; @@ -383,18 +382,6 @@ const char *afb_session_token (struct afb_session *session) return session->token; } -unsigned afb_session_get_LOA (struct afb_session *session) -{ - assert(session != NULL); - return session->loa; -} - -void afb_session_set_LOA (struct afb_session *session, unsigned loa) -{ - assert(session != NULL); - session->loa = loa; -} - void *afb_session_get_cookie(struct afb_session *session, const void *key) { struct cookie *cookie;