[STATUS] (flood) Wed Jul 28 23:45:39 EDT 2004

2004-07-29 Thread Rodent of Unusual Size
flood STATUS: -*-text-*- Last modified at [$Date: 2003/07/01 20:55:12 $] Release: 1.0: Released July 23, 2002 milestone-03: Tagged January 16, 2002 ASF-transfer: Released July 17, 2001 milestone-02: Tagged August 13,

[STATUS] (perl-framework) Wed Jul 28 23:45:40 EDT 2004

2004-07-29 Thread Rodent of Unusual Size
httpd-test/perl-framework STATUS: -*-text-*- Last modified at [$Date: 2002/03/09 05:22:48 $] Stuff to do: * finish the t/TEST exit code issue (ORed with 0x2C if framework failed) * change existing tests that frob the DocumentRoot (e.g.,

Re: cookie_jar ignored with requests_redirectable = 1

2004-07-29 Thread Stas Bekman
Stas Bekman wrote: David? Boris Zentner wrote: We are all at the OSCon at the moment, so we hardly get a chance to sleep. I suppose David will follow up soonish :) -- __ Stas BekmanJAm_pH -- Just Another mod_perl

Re: cookie_jar ignored with requests_redirectable = 1

2004-07-29 Thread David Wheeler
On Jul 28, 2004, at 1:29 AM, Stas Bekman wrote: Boris Zentner wrote: Hi, recently I try to use Apache::Test with HTTP::Cookies. But it did not work as expected. I suppose the way to add a cookie_jar to A::T was with 'Apache::TestRequest::user_agent'. I read the docs from

Re: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread William A. Rowe, Jr.
At 05:55 PM 7/28/2004, [EMAIL PROTECTED] wrote: minfrin 2004/07/28 15:55:15 Modified:.Tag: APACHE_2_0_BRANCH STATUS Log: Propose a backport +*) Add load balancer support to the scoreboard in preparation for + load balancing support in mod_proxy. +

RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Mladen Turk
William A. Rowe, Jr. wrote: /* Scoreboard file, if there is one */ #ifndef DEFAULT_SCOREBOARD @@ -118,6 +119,7 @@ typedef struct { int server_limit; int thread_limit; +int lb_limit; ap_scoreboard_e sb_type;

Re: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Andr Malo
* Mladen Turk [EMAIL PROTECTED] wrote: William A. Rowe, Jr. wrote: /* Scoreboard file, if there is one */ #ifndef DEFAULT_SCOREBOARD @@ -118,6 +119,7 @@ typedef struct { int server_limit; int thread_limit; +int

Hi

2004-07-29 Thread fanf
Important document! Norton AntiVirus Deleted1.txt Description: plain/text

[PATCH] Bug #9037 reminder

2004-07-29 Thread Federico Mennite
Hi, I've received yet another mail from someone asking me about the patch for bug #9037 at http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9037 The patch is attacched to the bug report. Also many distributions (e.g. Debian) ship apache with a patch for this issue. So far it seems to me that

RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Mladen Turk
André Malo wrote: William A. Rowe, Jr. wrote: This definitely breaks binary compatibility. Moving the lb_limit to the end of the struct will not break the binary compatibility. Correct? Not Correct. It *may* be the case. Depending on who allocates the stuff. Can you

RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread William A. Rowe, Jr.
At 02:24 AM 7/29/2004, Mladen Turk wrote: William A. Rowe, Jr. wrote: /* Scoreboard file, if there is one */ #ifndef DEFAULT_SCOREBOARD @@ -118,6 +119,7 @@ typedef struct { int server_limit; int thread_limit; +int

RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Mladen Turk
William A. Rowe, Jr. wrote: Moving the lb_limit to the end of the struct will not break the binary compatibility. Correct? Yes, in the case of global_score, that would be safer. It seems that the additional lb_score 's element point was better placed. If you changed

RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread William A. Rowe, Jr.
At 10:26 AM 7/29/2004, William A. Rowe, Jr. wrote: If you changed worker_score, it would still have broken (or if you change balancers in the future.) Agents reviewing the scoreboard are presuming scoreboard_entry *psb can be accessed as psb[0..n] and that -will- be broken with any

RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Mladen Turk
William A. Rowe, Jr. wrote: Although we create the pointer-pointer logic in the children to avoid this, it's still possible that the code would break some modules. I can't envision a case where any of the scoreboard entries are allocated outside of our scoreboard.c code. OK, then.

[PATCH] scoreboard WAS RE: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Mladen Turk
Hi all, Since there was some concerns regarding binary compatibility, here is the patch that uses different approach. 1. Revert the patch with changes to scoreboard structures 2. Add an extra hook that is run during ap_reopen_scoreboard with detached param. We will use our own shm, opening by

Ideas for Smart Filtering

2004-07-29 Thread Nick Kew
The filter architecture periodically gets discussed here, and I've been meaning to write up my thoughts for some time. I'm using a module that implements a slightly different filter API, primarily for filtering in a proxy context. I've now written a brief discussion document on the subject.

Re: cvs commit: httpd-2.0 STATUS

2004-07-29 Thread Roy T . Fielding
On Thursday, July 29, 2004, at 05:58 AM, André Malo wrote: * Mladen Turk [EMAIL PROTECTED] wrote: William A. Rowe, Jr. wrote: /* Scoreboard file, if there is one */ #ifndef DEFAULT_SCOREBOARD @@ -118,6 +119,7 @@ typedef struct { int server_limit; int