Sync OpenBSD patchset 403:

When a session is unattached, reset its activity timer to prevent it locking
instantly when reattached.
pull/1/head
Tiago Cunha 2009-10-15 01:43:16 +00:00
parent fe99f6fa11
commit 941032b707
1 changed files with 11 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $Id: server.c,v 1.209 2009-10-15 01:30:00 tcunha Exp $ */
/* $Id: server.c,v 1.210 2009-10-15 01:43:16 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -1380,6 +1380,11 @@ server_lock_server(void)
if ((s = ARRAY_ITEM(&sessions, i)) == NULL)
continue;
if (s->flags & SESSION_UNATTACHED) {
s->activity = time(NULL);
continue;
}
timeout = options_get_number(&s->options, "lock-after-time");
if (timeout <= 0 || t <= s->activity + timeout)
return; /* not timed out */
@ -1403,6 +1408,11 @@ server_lock_sessions(void)
if ((s = ARRAY_ITEM(&sessions, i)) == NULL)
continue;
if (s->flags & SESSION_UNATTACHED) {
s->activity = time(NULL);
continue;
}
timeout = options_get_number(&s->options, "lock-after-time");
if (timeout > 0 && t > s->activity + timeout) {
server_lock_session(s);