From: Daniel Gruno Date: Tue, 19 Feb 2013 21:33:30 +0000 (+0000) Subject: xforms X-Git-Tag: 2.4.5~560 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c3f522542c241d697dc0bb86212dc7c686805e89;p=apache xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1447931 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en index 5e44f7e6b0..e90bc4e8da 100644 --- a/docs/manual/developer/modguide.html.en +++ b/docs/manual/developer/modguide.html.en @@ -314,11 +314,11 @@ looks like

The request_rec structure

The most essential part of any request is the request record . In a call to a handler function, this is represented by the -request_req* structure passed along with every call that is made. +request_rec* structure passed along with every call that is made. This struct, typically just refered to as r in modules, contains all the information you need for your module to fully process any HTTP request and respond accordingly.

Some key elements of the -request_req structure are: +request_rec structure are:

-A complete list of all the values contained with in the request_req structure can be found in +A complete list of all the values contained with in the request_rec structure can be found in the httpd.h header file or at http://ci.apache.org/projects/httpd/trunk/doxygen/structrequest__rec.html.

@@ -428,7 +428,7 @@ the next, without informing other handlers.