RE: cvs commit: httpd-2.0/server core.c request.c

2003-06-30 Thread Sander Striker
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 3:25 AM striker 2003/06/30 18:25:07 Modified:.Tag: APACHE_2_0_BRANCH CHANGES STATUS include Tag: APACHE_2_0_BRANCH http_core.h modules/http Tag:

Re: cvs commit: httpd-2.0/server core.c request.c util.c

2003-03-26 Thread Rodent of Unusual Size
William A. Rowe, Jr. wrote: The configuration and context below seems odd to me; : You haven't resolved any Directory, Files, Locations etc in the code fragment above... it's too early in the request processing cycle. It seems this should not be a dir_conf flag, but actually a

Re: cvs commit: httpd-2.0/server core.c request.c util.c

2003-03-19 Thread William A. Rowe, Jr.
coar2003/01/23 13:34:14 Modified:include ap_mmn.h http_core.h httpd.h server core.c request.c util.c Log: here we go. add a directive that will keep %2f from being decoded into '/', allowing the *_walk to do their magic and return 404 if

Re: cvs commit: httpd-2.0/server core.c request.c util.c

2003-01-23 Thread André Malo
* [EMAIL PROTECTED] wrote: Index: ap_mmn.h === RCS file: /home/cvs/httpd-2.0/include/ap_mmn.h,v retrieving revision 1.52 retrieving revision 1.53 diff -u -u -r1.52 -r1.53 --- ap_mmn.h3 Sep 2002 23:39:43

Re: cvs commit: httpd-2.0/server core.c request.c util.c

2003-01-23 Thread André Malo
* Justin Erenkrantz wrote: --On Friday, January 24, 2003 00:11:22 +0100 André Malo [EMAIL PROTECTED] wrote: + * 20020903.1 (2.0.44-dev) allow_encoded_slashes added to core_dir_config This should now be 2.0.45-dev, shouldn't it? 2.1.0-dev. -- justin *err* yes ... nd -- die (eval

Re: cvs commit: httpd-2.0/server core.c request.c

2001-12-31 Thread William A. Rowe, Jr.
brianp 01/12/31 00:18:32 Modified:include http_core.h server core.c request.c Log: Performance fix for prep_walk_cache(): Moved the directory/location/file-walk caches from the request's pool userdata hash table to the core_request_config

Re: cvs commit: httpd-2.0/server core.c request.c

2001-12-31 Thread Brian Pane
William A. Rowe, Jr. wrote: ... However, can we find a way to make AP_NUM_WALK_CACHES a bit more flexible? See, for example, mod_proxy. We are doing the same bit there. Would you mind extending your patch to allow registration [at startup] of other cache members? This could be used for walk

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread Barrie Slaymaker
On Sun, Aug 26, 2001 at 05:10:17AM -, [EMAIL PROTECTED] wrote: core_a = ap_get_module_config(a-elt, core_module); core_b = ap_get_module_config(b-elt, core_module); -if (IS_SPECIAL(core_a)) { - if (!IS_SPECIAL(core_b)) { - return 1; - } + +

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread William A. Rowe, Jr.
From: Barrie Slaymaker [EMAIL PROTECTED] Sent: Monday, August 27, 2001 3:22 AM On Sun, Aug 26, 2001 at 05:10:17AM -, [EMAIL PROTECTED] wrote: core_a = ap_get_module_config(a-elt, core_module); core_b = ap_get_module_config(b-elt, core_module); -if

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread Barrie Slaymaker
On Mon, Aug 27, 2001 at 07:22:52AM -0500, William A. Rowe, Jr. wrote: From: Barrie Slaymaker [EMAIL PROTECTED] Sent: Monday, August 27, 2001 3:22 AM On Sun, Aug 26, 2001 at 05:10:17AM -, [EMAIL PROTECTED] wrote: core_a = ap_get_module_config(a-elt, core_module);

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread Ryan Bloom
On Monday 27 August 2001 06:22, Bill Stoddard wrote: From: Bill Stoddard [EMAIL PROTECTED] Sent: Sunday, August 26, 2001 11:48 AM On Sat, Aug 25, 2001 at 11:43:19PM -, [EMAIL PROTECTED] wrote: wrowe 01/08/25 16:43:19 Modified:.CHANGES

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread Bill Stoddard
It does? Then you need to find a clue. quick_handler should have been axed from the outset, and now that this handler allows a non-filesystem request to be handled properly, it really should be gone. map_to_storage is definitely not the same as quick_handler. But quick_handler

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread William A. Rowe, Jr.
From: Barrie Slaymaker [EMAIL PROTECTED] Sent: Monday, August 27, 2001 8:22 AM On Mon, Aug 27, 2001 at 07:22:52AM -0500, William A. Rowe, Jr. wrote: From: Barrie Slaymaker [EMAIL PROTECTED] Sent: Monday, August 27, 2001 3:22 AM On Sun, Aug 26, 2001 at 05:10:17AM -, [EMAIL

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread William A. Rowe, Jr.
From: Ryan Bloom [EMAIL PROTECTED] Sent: Monday, August 27, 2001 8:41 AM map_to_storage is definitely not the same as quick_handler. But quick_handler does have a use so it stays in. Actually, they are closer than you might think. quick_handler's purpose is to allow requests to be

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread Bill Stoddard
map_to_storage is definitely not the same as quick_handler. But quick_handler does have a use so it stays in. Actually, they are closer than you might think. quick_handler's purpose is to allow requests to be served as quickly as possible. It skips a lot of phases of the request

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread William A. Rowe, Jr.
From: Bill Stoddard [EMAIL PROTECTED] Sent: Monday, August 27, 2001 10:54 AM map_to_storage is definitely not the same as quick_handler. But quick_handler does have a use so it stays in. Actually, they are closer than you might think. quick_handler's purpose is to allow

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread Barrie Slaymaker
On Mon, Aug 27, 2001 at 09:47:28AM -0500, William A. Rowe, Jr. wrote: if ((core_a-r != NULL) (core_b-r != NULL)) { return -1; } else if ((core_a-r != NULL) (core_b-r != NULL)) { return 1; } does that look better :-? I'll commit as soon as someone tells

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread Roy T. Fielding
Quick_handler bypasses everything. We ignore the client's headers, the server's configuration, everything. Frankly, quick_handler is not Apache, and anyone who writes a quick_handler hack and calls it a module for 'Apache' is full of sh*t. Powered by the Apr/Apache MPM/load manager is

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-27 Thread William A. Rowe, Jr.
From: Roy T. Fielding [EMAIL PROTECTED] Sent: Monday, August 27, 2001 4:45 PM A quick_handler operates the way that a Web server is supposed to operate. I should be able to add a hook that detects a Code Red request and immediately close the connection with as little server overhead as

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-26 Thread Bill Stoddard
On Sat, Aug 25, 2001 at 11:43:19PM -, [EMAIL PROTECTED] wrote: wrowe 01/08/25 16:43:19 Modified:.CHANGES include http_request.h modules/http http_core.c http_protocol.c http_request.c mod_core.h

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-26 Thread Bill Stoddard
On Sat, Aug 25, 2001 at 11:43:19PM -, [EMAIL PROTECTED] wrote: wrowe 01/08/25 16:43:19 Modified:.CHANGES include http_request.h modules/http http_core.c http_protocol.c http_request.c mod_core.h

Re: cvs commit: httpd-2.0/server core.c request.c

2001-08-26 Thread William A. Rowe, Jr.
From: Greg Stein [EMAIL PROTECTED] Sent: Sunday, August 26, 2001 4:04 AM On Sat, Aug 25, 2001 at 11:43:19PM -, [EMAIL PROTECTED] wrote: wrowe 01/08/25 16:43:19 Modified:.CHANGES include http_request.h modules/http http_core.c