From sunet-commit-request@scsh.net Tue Aug 1 17:20:05 2006 Return-Path: X-Original-To: scsh@informatik.uni-tuebingen.de Delivered-To: scsh@informatik.uni-tuebingen.de Received: from localhost (loopback [127.0.0.1]) by mx1.informatik.uni-tuebingen.de (Postfix) with ESMTP id BD035182; Tue, 1 Aug 2006 17:20:04 +0200 (DFT) Received: from mx1.informatik.uni-tuebingen.de ([127.0.0.1]) by localhost (mx1 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 62458-02; Tue, 1 Aug 2006 17:20:04 +0200 (DFT) Received: from www.scsh.net (bernard.Informatik.Uni-Tuebingen.De [134.2.12.122]) by mx1.informatik.uni-tuebingen.de (Postfix) with ESMTP id 383FC12B; Tue, 1 Aug 2006 17:20:04 +0200 (DFT) Received: by www.scsh.net (Postfix, from userid 3123) id 29CBD5ED1; Tue, 1 Aug 2006 17:20:04 +0200 (MST) Old-Return-Path: X-Original-To: sunet-commit@scsh.net Delivered-To: sunet-commit@scsh.net Subject: sunet/scheme/httpd/surflets surflet-handler.scm From: Martin Gasbichler To: sunet-commit@scsh.net Message-Id: <20060801151926.ED535185@mx1.informatik.uni-tuebingen.de> Date: Tue, 1 Aug 2006 17:19:26 +0200 (DFT) Resent-Message-ID: Resent-From: sunet-commit@scsh.net X-Mailing-List: archive/latest/219 X-Loop: sunet-commit@scsh.net List-Post: List-Help: List-Subscribe: List-Unsubscribe: Precedence: list Resent-Sender: sunet-commit-request@scsh.net List-Id: List-Archive: Resent-Date: Tue, 1 Aug 2006 17:20:04 +0200 (MST) Update of /cvsroot/sunet/sunet/scheme/httpd/surflets In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv19377 Modified Files: surflet-handler.scm Log Message: Fix handling of session timeouts by using the session-id as the only key. From sunet-commit-request@scsh.net Wed Aug 2 17:23:59 2006 Return-Path: X-Original-To: scsh@informatik.uni-tuebingen.de Delivered-To: scsh@informatik.uni-tuebingen.de Received: from localhost (loopback [127.0.0.1]) by mx4.informatik.uni-tuebingen.de (Postfix) with ESMTP id F295D1493; Wed, 2 Aug 2006 17:23:58 +0200 (DFT) Received: from mx4.informatik.uni-tuebingen.de ([127.0.0.1]) by localhost (mx4 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14414-05; Wed, 2 Aug 2006 17:23:57 +0200 (DFT) Received: from www.scsh.net (bernard.Informatik.Uni-Tuebingen.De [134.2.12.122]) by mx4.informatik.uni-tuebingen.de (Postfix) with ESMTP id 02FC61499; Wed, 2 Aug 2006 17:23:53 +0200 (DFT) Received: by www.scsh.net (Postfix, from userid 3123) id BE1045ED1; Wed, 2 Aug 2006 17:23:52 +0200 (MST) Old-Return-Path: X-Original-To: sunet-commit@scsh.net Delivered-To: sunet-commit@scsh.net Subject: sunet/scheme/httpd/surflets surflet-handler.scm From: Martin Gasbichler To: sunet-commit@scsh.net Message-Id: <20060802152349.EF836129@mx1.informatik.uni-tuebingen.de> Date: Wed, 2 Aug 2006 17:23:49 +0200 (DFT) Resent-Message-ID: Resent-From: sunet-commit@scsh.net X-Mailing-List: archive/latest/220 X-Loop: sunet-commit@scsh.net List-Post: List-Help: List-Subscribe: List-Unsubscribe: Precedence: list Resent-Sender: sunet-commit-request@scsh.net List-Id: List-Archive: Resent-Date: Wed, 2 Aug 2006 17:23:52 +0200 (MST) Update of /cvsroot/sunet/sunet/scheme/httpd/surflets In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv9535 Modified Files: surflet-handler.scm Log Message: Re-implement session timeouts using a hash table mapping session ids to timeouts and let the surveillance thread walk the table to find outdated surflets. The previous implementation was nothing but bogus.