Re: Apache modification questions

2008-09-04 Thread Ray Morris
Can all this be done in an Apache module? Yes, just about anything can be done in an Apache module. Based on your other questions, it sounds like you need a thorough exposition of the Apache API and probably the HTTP protocol, so I'd suggets your next step is to study some good

Re: [community] 2.3.0 alpha on October 1?

2008-09-04 Thread steve
Our latest builds, on some fairly modest hardware, are actually about twice as fast as numbers I posted last time async-vs-threads came up. Apache can very easily fill multiple gigE interfaces on modest hardware. We can sustain about 45k requests/sec on our build on a dual dual-core system

Fwd: CVE-2008-2364 and 2.0.x branch

2008-09-04 Thread Armando Oliveira
Hello Someone can help me ? What is the meaning of interim responses ? How can this affect apache ? thanks -- Forwarded message -- From: William A. Rowe, Jr. [EMAIL PROTECTED] Date: Wed, Sep 3, 2008 at 7:04 PM Subject: Re: CVE-2008-2364 and 2.0.x branch To: Armando Oliveira

Re: [community] 2.3.0 alpha on October 1?

2008-09-04 Thread Bing Swen
Akins, Brian wrote on 2008年9月3日 7:54 Egads, no wonder they got such horrible performance. Worker (or event, maybe) seems to be the best way to go, at least based on our testing. Yes, Worker can work much better, but seems to be basically the same order of magnitute as threads on Windows

Re: Adding full environment variable support to mod_proxy_ajp

2008-09-04 Thread Rainer Jung
Ian Ward Comfort wrote: On 2 Sep 2008, at 9:34 PM, Mladen Turk wrote: Anyhow I agree with Nick that using existing directives from mod_rewrite or mod_headers would be much nicer solution, so I'm not in favor of adding new directives. Do you like the idea of proxying the entire subprocess_env

Re: Adding full environment variable support to mod_proxy_ajp

2008-09-04 Thread Ian Ward Comfort
On 4 Sep 2008, at 1:48 AM, Rainer Jung wrote: Ian Ward Comfort wrote: RewriteRule ^ - [C,E=AJP_REMOTE_USER:%{ENV:REMOTE_USER}] I think, that forwarding the full subprocess_env table is to much and usually not what is needed. I agree. If you really have use cases, where there are lots of

Re: Adding full environment variable support to mod_proxy_ajp

2008-09-04 Thread Nick Kew
On Thu, 4 Sep 2008 02:00:47 -0700 Ian Ward Comfort [EMAIL PROTECTED] wrote: I think, that forwarding the full subprocess_env table is to much and usually not what is needed. But if we're talking about the backend's env, then (optionally) inheriting it from the proxy seems to me to make

Re: svn commit: r691418 [1/2] - in /httpd/httpd/trunk: ./ docs/manual/mod/ modules/filters/

2008-09-04 Thread Ruediger Pluem
On 09/03/2008 01:01 AM, [EMAIL PROTECTED] wrote: Author: niq Date: Tue Sep 2 16:01:47 2008 New Revision: 691418 URL: http://svn.apache.org/viewvc?rev=691418view=rev Log: Commit mod_sed: enable filtering of HTTP Requests and Responses through sed Added:

Re: Apache and CLOSE_WAIT state

2008-09-04 Thread Arnab Ganguly
Issue it that I am using Apache internal system calls like [ap_setup_client_block, ap_should_client_block , ap_get_client_block] for client communication and the socket descriptors are not available at this level, as per the apache doc ,when the Apache pool is destroyed the sockets are also going

Re: svn commit: r691418 [1/2] - in /httpd/httpd/trunk: ./ docs/manual/mod/ modules/filters/

2008-09-04 Thread Jim Jagielski
Apologies if this was already discussed and resolved, but I see quite a number of: * Copyright (c) 1984 ATT *All Rights Reserved in various files... Can we track the IP of those parts to ensure that we (and Sun) have the required license to use them??

Re: [community] 2.3.0 alpha on October 1?

2008-09-04 Thread Akins, Brian
On 9/4/08 4:22 AM, Bing Swen [EMAIL PROTECTED] wrote: Maybe you have super-optimized hardware and system? Nope, standard off the shelf systems. So I wonder perhaps next time you guys may bother to take time to also run Nginx on your platform and tell us how it performs against your httpd

Re: [community] 2.3.0 alpha on October 1?

2008-09-04 Thread Akins, Brian
On 9/4/08 2:54 AM, steve [EMAIL PROTECTED] wrote: Filling gigE and requests/sec aren't targets that concern me as a user. They sound like nice beanchmarks though... To some folks, filling a gigE is important. FWIW, I ran some tests yesterday with about 50K ISDN (384K) speed clients and httpd

Re: svn commit: r691418 [1/2] - in /httpd/httpd/trunk: ./ docs/manual/mod/ modules/filters/

2008-09-04 Thread Nick Kew
On Thu, 4 Sep 2008 10:12:39 -0400 Jim Jagielski [EMAIL PROTECTED] wrote: On Sep 4, 2008, at 6:38 AM, Ruediger Pluem wrote: More comments possibly later. For the most part, it looks like many of the optimizations in mod_substitute, esp regarding efficient use of buckets, is lacking

Re: Adding full environment variable support to mod_proxy_ajp

2008-09-04 Thread Ian Ward Comfort
On 4 Sep 2008, at 2:54 AM, Nick Kew wrote: But if we're talking about the backend's env, then (optionally) inheriting it from the proxy seems to me to make semantic sense. There is a logic to that strategy. I for one rarely need the whole environment forwarded, and would probably rather

Apache modification questions

2008-09-04 Thread Andrej van der Zee
Hi, I am about to modify Apache with some custom logging for GET/POST requests (and more). It is for the purpose of research. If possible, I would like to get some guidance in how to implement my ideas. I will explain... Every GET/POST request to Apache will carry a request identifier. Adding