diff options
Diffstat (limited to 'src/afb-session.c')
-rw-r--r-- | src/afb-session.c | 13 |
1 files changed, 0 insertions, 13 deletions
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; |