From fc094b2b241baf433022d6476755fc44153369b8 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Fri, 13 Apr 2012 16:07:18 +0000 Subject: [PATCH] Fix up title and references to httpd git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1325824 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/developer/request.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/manual/developer/request.xml b/docs/manual/developer/request.xml index 6e707b9ac5..ae2613d16d 100644 --- a/docs/manual/developer/request.xml +++ b/docs/manual/developer/request.xml @@ -23,7 +23,7 @@ Developer Documentation -Request Processing in Apache 2.0 +Request Processing in the Apache HTTP Server 2.x Warning @@ -31,15 +31,15 @@ revision!

-

Several changes in Apache 2.0 affect the internal request +

Several changes in 2.0 and above affect the internal request processing mechanics. Module authors need to be aware of these changes so they may take advantage of the optimizations and security enhancements.

The first major change is to the subrequest and redirect mechanisms. There were a number of different code paths in - Apache 1.3 to attempt to optimize subrequest or redirect - behavior. As patches were introduced to 2.0, these + the Apache HTTP Server 1.3 to attempt to optimize subrequest + or redirect behavior. As patches were introduced to 2.0, these optimizations (and the server behavior) were quickly broken due to this duplication of code. All duplicate code has been folded back into ap_process_request_internal() to prevent @@ -50,7 +50,7 @@ and correct implementation of the HTTP server RFC. Additional goals include security, scalability and optimization. New methods were sought to optimize the server (beyond the - performance of Apache 1.3) without introducing fragile or + performance of 1.3) without introducing fragile or insecure code.

@@ -63,7 +63,7 @@

To streamline requests, the module author can take advantage of the hooks offered to drop out of the request cycle early, or - to bypass core Apache hooks which are irrelevant (and costly in + to bypass core hooks which are irrelevant (and costly in terms of CPU.)

-- 2.40.0