-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cookie lifetime isn't extended on authenticated request #2
Comments
I think the following block needs to be changed: static authn_status We should re-set the cookie here
Something along these lines...
[snip] |
This patch (tested) seems to do what I want / what the documentation seems to mean: diff --git a/mod_authn_linotp.c b/mod_authn_linotp.c
|
Any feedback please.... or at least a merge of this pull-request ? |
I'ts my expectation from reading the source and documentation that upon authentication, any new web-request made with a valid authentication will re-new the lifetime of the authentication cookie.
So if you have a 10-minute cookie lifetime, making at least one request before the 10 minutes runs out will reset the counter to 10 minutes again.
Looking at the source (and my cookie-tracker), I;m not seeing the expire-time being reset when new cookies are sent.
The text was updated successfully, but these errors were encountered: