From 5a4900af32ceeb95d9b40f19ea5042c8160fc895 Mon Sep 17 00:00:00 2001
From: Daniel Gruno r
in modules, contains all the
your module to fully process any HTTP request and respond accordingly.
Some key elements of the request_req
structure are:
r->handler
(char*)
: Contains the name of the handler, Apache is currently asking to do the handling of this requestr->handler
(char*)
: Contains the name of the handler Apache is currently asking to do the handling of this requestr->method
(char*)
: Contains the HTTP method being used, f.x. GET or POSTr->filename
(char*)
: Contains the translated filename the client is requestingr->args
(char*)
: Contains the query string of the request, if anyrequest_req
structure can be found in
the httpd.h
header
-file or at [insert link here].
+file or at http://ci.apache.org/projects/httpd/trunk/doxygen/structrequest__rec.html.
Let's try out some of these variables in another example handler:
diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml
index 94717e5a25..a877c0f4f4 100644
--- a/docs/manual/developer/modguide.xml
+++ b/docs/manual/developer/modguide.xml
@@ -260,7 +260,7 @@ struct, typically just refered to as r
in modules, contains all the
your module to fully process any HTTP request and respond accordingly.
Some key elements of the request_req
structure are:
r->handler
(char*)
: Contains the name of the handler, Apache is currently asking to do the handling of this requestr->handler
(char*)
: Contains the name of the handler Apache is currently asking to do the handling of this requestr->method
(char*)
: Contains the HTTP method being used, f.x. GET or POSTr->filename
(char*)
: Contains the translated filename the client is requestingr->args
(char*)
: Contains the query string of the request, if anyrequest_req
structure can be found in
the httpd.h
header
-file or at [insert link here].
+file or at http://ci.apache.org/projects/httpd/trunk/doxygen/structrequest__rec.html.
Let's try out some of these variables in another example handler:
--
2.40.0