modguide.xml revision c955b5a85313893f7bf55aaa5aacbd946cb41570
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<?xml version='1.0' encoding='UTF-8' ?>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!DOCTYPE manualpage SYSTEM "/style/manualpage.dtd">
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<?xml-stylesheet type="text/xsl" href="/style/manual.en.xsl"?>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- $LastChangedRevision: 1307798 $ -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!--
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh Licensed to the Apache Software Foundation (ASF) under one or more
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh contributor license agreements. See the NOTICE file distributed with
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh this work for additional information regarding copyright ownership.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh The ASF licenses this file to You under the Apache License, Version 2.0
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh (the "License"); you may not use this file except in compliance with
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh the License. You may obtain a copy of the License at
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh http://www.apache.org/licenses/LICENSE-2.0
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh Unless required by applicable law or agreed to in writing, software
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh distributed under the License is distributed on an "AS IS" BASIS,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh See the License for the specific language governing permissions and
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh limitations under the License.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh-->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<manualpage metafile="modguide.xml.meta">
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<parentdocument href="./">Developer</parentdocument>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <title>Developing modules for the Apache HTTP Server 2.4</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<summary>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>This document explains how you can develop modules for the Apache HTTP Server 2.4</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</summary>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<seealso><a href="request.html">Request Processing in Apache 2.4</a></seealso>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<seealso><a href="hooks.html">Apache 2.x Hook Functions</a></seealso>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="introduction"><title>Introduction</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="what"><title>What we will be discussing in this document</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThis document will discuss how you can easily create modules for the Apache HTTP Server 2.4 (&quot;Apache&quot;),
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohby exploring an example module called <code>mod_example</code>. In the first part of this document, the purpose of this
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmodule will be to calculate and print out various digest values for existing files on your web server, whenever we
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohaccess the URL <code>http://hostname/filename.sum</code>. For instance, if we want to know the MD5 digest value of the file
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohlocated at <code>http://www.example.com/index.html</code>, we would visit <code>http://www.example.com/index.html.sum</code>.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn the second part of this document, which deals with configuration directive and context awareness, we will be looking at
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooha module that simply write out its own configuration to the client.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="prerequisites"><title>Prerequisites</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohFirst and foremost, you are expected to have a basic knowledge of how the C programming language works. In most cases,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwe will try to be as pedagogical as possible and link to documents describing the functions used in the examples,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohbut there are also many cases where it is necessary to either just assume that "it works" or do some digging youself
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohinto what the hows and whys of various function calls.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohLastly, you will need to have a basic understanding of how modules are loaded and configured in Apache, as well as
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohhow to get the headers for Apache if you do not have them already, as these are needed for compiling new modules.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="compiling"><title>Compiling your module</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohTo compile the source code we are building in this document, we will be using <a href="/programs/apxs.html">APXS</a>.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohAssuming your source file is called mod_example.c, compiling, installing and activating the module is as simple as:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<example><pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohapxs -i -a -c mod_example.c
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre></example>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="basics"><title>Defining a module</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<img src="/images/build_a_mod_3.png"/><br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>Every module starts with the same declaration, or name tag if you will, that defines a module as <em>a separate entity within Apache</em>:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmodule AP_MODULE_DECLARE_DATA example_module <code style='color:#806030; '>=</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh STANDARD20_MODULE_STUFF<code style='color:#806030; '>,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh create_dir_conf<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Per-directory configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh merge_dir_conf<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Merge handler for per-directory configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh create_svr_conf<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Per-server configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh merge_svr_conf<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Merge handler for per-server configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh directives<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Any directives we may have for httpd */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh register_hooks <code style='color:#c34e00; '>/* Our hook registering function */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThis bit of code lets Apache know that we have now registered a new module in the system,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohand that its name is <code>example_module</code>. The name of the module is used primarilly
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohfor two things:<br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Letting Apache know how to load the module using the LoadModule</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Setting up a namespace for the module to use in configurations</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohFor now, we're only concerned with the first purpose of the module name,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwhich comes into play when we need to load the module:<br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<example><pre><a href="/mod/mod_so.html#LoadModule">LoadModule</a> example_module modules/mod_example.so</pre></example>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn essence, this tells Apache to open up <code>mod_example.so</code> and look for a module
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohcalled <code>example_module</code>.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohWithin this name tag of ours is also a bunch of references to how we would like to handle things:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohWhich directives do we respond to in a configuration file or .htaccess, how do we operate
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwithin specific contexts, and what handlers are we interested in registering with the Apache
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohservice. We'll return to all these elements later in this document.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="hooking"><title>Getting started: Hooking into Apache</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="hook_intro"><title>An introduction to hooks</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohWhen handling requests in Apache, the first thing you will need to do is create a hook into
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohthe request handling process. A hook is essentially a message telling Apache that you are
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwilling to either serve or at least take a glance at certain requests given by clients. All
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohhandlers, whether it's mod_rewrite, mod_authn_*, mod_proxy and so on, are hooked into specific
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohparts of the request process. As you are probably aware, modules serve different purposes; Some
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohare authentication/authorization handlers, others are file or script handlers while some third
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmodules rewrite URIs or proxies content. Furthermore, in the end, it is up to the user of Apache
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohhow and when each module will come into place. Thus, Apache itself does not presume to know
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwhich module is responsible for handling a specific request, and will ask each module whether
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohthey have an interest in a given request or not. It is then up to each module to either gently
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohdecline serving a request, accept serving it or flat out deny the request from being served,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohas authentication/authorization modules do: <br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<img src="/images/build_a_mod_2.png" /><br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohTo make it a bit easier for handlers such as our mod_example to know whether the client is
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohrequesting content we should handle or not, Apache has directives for hinting to modules whether
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohtheir assistance is needed or not. Two of these are <directive
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmodule="mod_mime">AddHandler</directive> and <directive module="core">SetHandler</directive>.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohLet's take a look at an example using <directive module="mod_mime">AddHandler</directive>.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn our example case, we want every request ending with .sum to be served by <code>mod_example</code>,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohso we'll add a configuration directive that tells Apache to do just that:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<example><pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohAddHandler example-handler .sum
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre></example>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohWhat this tells Apache is the following: <em>Whenever we receive a request for a URI ending in .sum,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwe are to let all modules know that we are looking for whoever goes by the name of &quot;example-handler&quot;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</em>. Thus, when a request is being served that ends in .sum, Apache will let all modules know, that
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohthis request should be served by &quot;example-handler&quot;. As you will see later, when we start
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohbuilding mod_example, we will check for this handler tag relayed by <code>AddHandler</code> and
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohreply to Apache based on the value of this tag.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="hook_declaration"><title>Hooking into httpd</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohTo begin with, we only want to create a simple handler, that replies to the client browser
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwhen a specific URL is requested, so we won't bother setting up configuration handlers and
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohdirectives just yet. Our initial module definition will look like this:<br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmodule AP_MODULE_DECLARE_DATA example_module =
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh{
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh STANDARD20_MODULE_STUFF,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#7f0055; font-weight:bold; '>NULL</code>,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#7f0055; font-weight:bold; '>NULL</code>,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#7f0055; font-weight:bold; '>NULL</code>,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#7f0055; font-weight:bold; '>NULL</code>,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#7f0055; font-weight:bold; '>NULL</code>,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#800040; '>register_hooks</code> <code style='color:#c34e00; '><code style='color:#c34e00; '>/* Our hook registering function */</code></code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh};
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThis lets Apache know that we are not interesting in anything fancy, we just want to hook onto
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohthe requests and possibly handle some of them.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThe reference in our example declaration, <code>register_hooks</code> is the name of a function
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwe will create to manage how we hook onto the request process. In this example module, the function
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohhas just one purpose; To create a simple hook that gets called after all the rewrites, access
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohcontrol etc has been handled. Thus, we will let Apache know, that we want to hook into its process
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohas one of the last modules:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>void</code> register_hooks<code style='color:#806030; '>(</code>apr_pool_t <code style='color:#806030; '>*</code>pool<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Create a hook in the request handler, so we get called when a request arrives */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#800040; '>ap_hook_handler</code><code style='color:#806030; '>(</code>example_handler<code style='color:#806030; '>,</code> <code style='color:#7f0055; font-weight:bold; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#7f0055; font-weight:bold; '>NULL</code><code style='color:#806030; '>,</code> APR_HOOK_LAST<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThe <code>example_handler</code> reference is the function that will handle the request. We will
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohdiscuss how to create a handler in the next chapter.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="hook_others"><title>Other useful hooks</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohHooking into the request handling phase is but one of many hooks that you can create. Some other ways of hooking are:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>ap_hook_child_init</code>: Place a hook that executes when a child process is spawned (commonly used for initializing modules after Apache has forked)</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>ap_hook_pre_config</code>: Place a hook that executes before any configuration data has been read (very early hook)</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>ap_hook_post_config</code>: Place a hook that executes after configuration has been parsed, but before Apache has forked</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>ap_hook_translate_name</code>: Place a hook that executes when a URI needs to be translated into a filename on the server (think <code>mod_rewrite</code>)</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="handling"><title>Building a handler</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohA handler is essentially a function that receives a callback when a request to Apache is made.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIt is passed a record of the current request (how it was made, which headers and requests were
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohpassed along, who's giving the request and so on), and is put in charge of either telling
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohApache that it's not interested in the request or handle the request with the tools provided.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="simple_handler"><title>A simple &quot;Hello, world!&quot; handler</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohLet's start off by making a very simple request handler that does the following: <br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<ol>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Check that this is a request that should be served by &quot;example-handler&quot;</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Set the content type of our output to <code>text/html</code></li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Write &quot;Hello, world!&quot; back to the client browser</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Let Apache know that we took care of this request and everything went fine</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</ol>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn C code, our example handler will now look like this:<br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* First off, we need to check if this is a call for the "example-handler" handler.</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;* If it is, we accept it and do our things, it not, we simply return DECLINED,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;* and Apache will try somewhere else.</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code> <code style='color:#806030; '>|</code><code style='color:#806030; '>|</code> <code style='color:#800040; '>strcmp</code><code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code><code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>example-handler</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#806030; '>(</code>DECLINED<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Now that we are handling this request, we'll write out "Hello, world!" to the client.</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;* To do so, we must first set the appropriate content type, followed by our output.</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#gaa2f8412c400197338ec509f4a45e4579">ap_set_content_type</a><code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>text/html</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#ga5e91eb6ca777c9a427b2e82bf1eeb81d">ap_rprintf</a><code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Hello, world!</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Lastly, we must tell Apache that we took care of this request and everything went fine.</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;* We do so by simply returning the value OK to Apache.</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohNow, we put all we have learned together and end up with a program that looks like <a href="mod_example_1.c">
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmod_example_1.c</a>. The functions used in this example will be explained later in the section
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<a href="#functions">&quot;Some useful functions you should know&quot;</a>.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="request_rec"><title>The request_rec structure</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>The most essential part of any request is the <em>request record</em>. In a call to a handler function, this
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohis represented by the <code>request_req*</code> structure passed along with every call that is made. This
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohstruct, typically just refered to as <code>r</code> in modules, contains all the information you need for
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohyour module to fully process any HTTP request and respond accordingly.</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>Some key elements of the <code>request_req</code> structure are:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code><code style='color:#008833'>r-&gt;handler</code> (char*)</code>: Contains the name of the handler, Apache is currently asking to do the handling of this request</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code><code style='color:#008833'>r-&gt;method</code> (char*)</code>: Contains the HTTP method being used, f.x. GET or POST</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code><code style='color:#008833'>r-&gt;filename</code> (char*)</code>: Contains the translated filename the client is requesting</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code><code style='color:#008833'>r-&gt;args</code> (char*)</code>: Contains the query string of the request, if any</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code><code style='color:#008833'>r-&gt;headers_in</code> (apr_table_t*)</code>: Contains all the headers sent by the client</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code><code style='color:#008833'>r-&gt;connection</code> (conn_rec*)</code>: A record containing information about the current connection</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code><code style='color:#008833'>r-&gt;useragent_ip</code> (char*)</code>: The IP address of the client connecting to us</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code><code style='color:#008833'>r-&gt;pool</code> (apr_pool_t*)</code>: The memory pool of this request. We'll discuss this in the &quot;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<a href="#memory">Memory management</a>&quot; chapter.</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohA complete list of all the values contained with in the <code>request_req</code> structure can be found in
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohthe <a href="http://svn.apache.org/repos/asf/httpd/httpd/trunk/include/httpd.h"><code>httpd.h</code></a> header
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohfile or at [insert link here].
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohLet's try out some of these variables in another example handler:<br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Set the appropriate content type */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#gaa2f8412c400197338ec509f4a45e4579">ap_set_content_type</a><code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>text/html</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Print out the IP address of the client connecting to us: */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#ga5e91eb6ca777c9a427b2e82bf1eeb81d">ap_rprintf</a><code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>&lt;h2>Hello, </code><code style='color:#0f6900; '>%s</code><code style='color:#e60000; '>!&lt;/h2></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>useragent_ip</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* If we were reached through a GET or a POST request, be happy, else sad. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code> <code style='color:#806030; '>!</code><code style='color:#800040; '>strcmp</code><code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>method</code><code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>POST</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>|</code><code style='color:#806030; '>|</code> <code style='color:#806030; '>!</code><code style='color:#800040; '>strcmp</code><code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>method</code><code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>GET</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rputs<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>You used a GET or a POST method, that makes us happy!&lt;br></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rputs<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>You did not use POST or GET, that makes us sad :(&lt;br></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Lastly, if there was a query string, let's print that too! */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>args</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#ga5e91eb6ca777c9a427b2e82bf1eeb81d">ap_rprintf</a><code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Your query string was: </code><code style='color:#0f6900; '>%s</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>args</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="return_value"><title>Return values</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohApache relies on return values from handlers to signify whether a request was handled or not,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohand if so, whether the request went well or not. If a module is not interested in handling
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooha specific request, it should always return the value <code>DECLINED</code>. If it is handling
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooha request, it should either return the generic value <code>OK</code>, or a specific HTTP status
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohcode, for example:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Return 404: Not found */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> HTTP_NOT_FOUND<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohReturning <code>OK</code> or a HTTP status code does not necessarilly mean that the request will end. Apache
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmay still have other handlers that are interested in this request, for instance the logging modules
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwhich, upon a successful request, will write down a summary of what was requested and how it went.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohTo do a full stop and prevent any further processing after your module is done, you can return the
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohvalue <code>DONE</code> to let Apache know that it should cease all activity on this request and
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohcarry on with the next, without informing other handlers.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<strong>General response codes:</strong>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>DECLINED</code>: We are not handling this request</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>OK</code>: We handled this request and it went well</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>DONE</code>: We handled this request and Apache should just close this thread without further processing</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</ul><br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<strong>HTTP specific return codes (excerpt):</strong>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>HTTP_OK (200)</code>: Request was okay</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>HTTP_MOVED_PERMANENTLY (301)</code>: The resource has moved to a new URL</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>HTTP_UNAUTHORIZED (401)</code>: Client is not authorized to visit this page</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>HTTP_FORBIDDEN (403)</code>: Permission denied</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>HTTP_NOT_FOUND (404)</code>: File not found</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>HTTP_INTERNAL_SERVER_ERROR (500)</code>: Internal server error (self explanatory)</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="functions"><title>Some useful functions you should know</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code>ap_rputs(const char *string, request_req *r)</code>: <br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh Sends a string of text to the client. This is a shorthand version of <a
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#gac827cd0537d2b6213a7c06d7c26cc36e">
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rwrite</a>.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>ap_rputs<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>Hello, world!</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code></pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#ga5e91eb6ca777c9a427b2e82bf1eeb81d">ap_rprintf</a></code>: <br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh This function works just like <code>printf</code>, except it sends the result to the client.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'><code style='color:#2e8800; '><a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#ga5e91eb6ca777c9a427b2e82bf1eeb81d">ap_rprintf</a></code><code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Hello, </code><code style='color:#0f6900; '>%s</code><code style='color:#e60000; '>!</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>useragent_ip</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code></pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#gaa2f8412c400197338ec509f4a45e4579">ap_set_content_type</a>(request_req *r, const char *type)</code>: <br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh Sets the content type of the output you are sending.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'><code style='color:#2e8800; '><a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__PROTO.html#gaa2f8412c400197338ec509f4a45e4579">ap_set_content_type</a></code><code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>text/plain</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* force a raw text output */</code></pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="memory"><title>Memory management</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohManaging your resources in Apache is quite easy, thanks to the memory pool system. In essence,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooheach server, connection and request have their own memory pool that gets cleaned up when its
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohscope ends, e.g. when a request is done or when a server process shuts down. All your module
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohneeds to do is latch onto this memory pool, and you won't have to worry about having to clean
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohup after yourself - pretty neat, huh?</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn our module, we will primarilly be allocating memory for each request, so it's appropriate to
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohuse the <code><code style='color:#008833'>r-&gt;pool</code></code> reference when creating new objects. A few of the functions for
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohallocating memory within a pool are:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>void* <a href="http://apr.apache.org/docs/apr/0.9/group__apr__pools.html#g85f1e193c31d109affda72f9a92c6915">apr_palloc</a>(
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohapr_pool_t *p, apr_size_t size)</code>: Allocates <code>size</code> number of bytes in the pool for you</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>void* <a href="http://apr.apache.org/docs/apr/0.9/group__apr__pools.html#gf61c098ad258069d64cdf8c0a9369f9e">apr_pcalloc</a>(
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohapr_pool_t *p, apr_size_t size)</code>: Allocates <code>size</code> number of bytes in the pool for you and sets all bytes to 0</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>char* <a href="http://apr.apache.org/docs/apr/0.9/group__apr__strings.html#gbc79e99ff19abbd7cfd18308c5f85d47">apr_pstrdup</a>(
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohapr_pool_t *p, const char *s)</code>: Creates a duplicate of the string <code>s</code>. This is useful for copying constant values so you can edit them</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</ul>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohLet's put these functions into an example handler:<br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '>*</code> original <code style='color:#806030; '>=</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>You can't edit this!</code><code style='color:#800000; '>"</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Allocate space for 10 integer values and set them all to zero. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code><code style='color:#806030; '>*</code> integers <code style='color:#806030; '>=</code> apr_pcalloc<code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>pool</code><code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>sizeof</code><code style='color:#806030; '>(</code><code style='color:#400000; font-weight:bold; '>int</code><code style='color:#806030; '>)</code><code style='color:#806030; '>*</code><code style='color:#c00000; '>10</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Create a copy of the 'original' variable that we can edit. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '>*</code> copy <code style='color:#806030; '>=</code> apr_pstrdup<code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>pool</code><code style='color:#806030; '>,</code> original<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThis is all well and good for our module, which won't need any pre-initialized variables or structures.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohHowever, if we wanted to initialize something early on, before the requests come rolling in, we could
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohsimply add a call to a function in our <code>register_hooks</code> function to sort it out:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>void</code> register_hooks<code style='color:#806030; '>(</code>apr_pool_t <code style='color:#806030; '>*</code>pool<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Call a function that initializes some stuff */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#800040; '>example_init_function</code><code style='color:#806030; '>(</code>pool<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Create a hook in the request handler, so we get called when a request arrives */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#800040; '>ap_hook_handler</code><code style='color:#806030; '>(</code>example_handler<code style='color:#806030; '>,</code> <code style='color:#7f0055; font-weight:bold; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#7f0055; font-weight:bold; '>NULL</code><code style='color:#806030; '>,</code> APR_HOOK_LAST<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn this, pre-request initialization function, we would not be using the same pool as we did when
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohallocating resources for request-based functions. Instead, we would use the pool given to us by
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohApache for allocating memory on a per-process based level.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="parsing"><title>Parsing request data</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn our example module, we would like to add a feature, that checks which type of digest, MD5 or SHA1
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohthe client would like to see. This could be solved by adding a query string to the request. A query
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohstring is typically comprised of several keys and values put together in a string, for instance
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code>valueA=yes&amp;valueB=no&amp;valueC=maybe</code>. It is up to the module itself to parse these
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohand get the data it requires. In our example, we'll be looking for a key called <code>digest</code>,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohand if set to <code>md5</code>, we'll produce an MD5 digest, otherwise we'll produce a SHA1 digest.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohSince the introduction of Apache 2.4, parsing request data from GET and POST requests have never
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohbeen easier. All we require to parse both GET and POST data is four simple lines:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__apr__tables.html#gad7ea82d6608a4a633fc3775694ab71e4">apr_table_t</a> *GET;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<a href="http://ci.apache.org/projects/httpd/trunk/doxygen/structapr__array__header__t.html">apr_array_header_t</a> *POST;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__SCRIPT.html#gaed25877b529623a4d8f99f819ba1b7bd">ap_args_to_table</a>(r, &amp;GET);
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__DAEMON.html#ga9d426b6382b49754d4f87c55f65af202">ap_parse_form_data</a>(r, <code style='color:#7f0055; font-weight:bold; '>NULL</code>, &amp;POST, -1, 8192);
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn our specific example module, we're looking for the <code>digest</code> value from the query string,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwhich now resides inside a table called <code>GET</code>. To extract this value, we need only perform
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooha simple operation:<br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* Get the "digest" key from the query string, if any. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '> *</code>digestType <code style='color:#806030; '>=</code> <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__apr__tables.html#ga4db13e3915c6b9a3142b175d4c15d915">apr_table_get</a><code style='color:#806030; '>(</code>GET<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>digest</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* If no key was returned, we will set a default value instead. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>digestType<code style='color:#806030; '>)</code> digestType <code style='color:#806030; '>=</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>sha1</code><code style='color:#800000; '>"</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThe structures used for the POST and GET data are not exactly the same, so if we were to fetch a value from
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohPOST data instead of the query string, we would have to resort to a few more lines, as outlined in
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<a href="#get_post">this example</a> in the last chapter of this document.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="advanced_handler"><title>Making an advanced handler</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohNow that we have learned how to parse form data and manage our resources, we can move on to creating an advanced
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohversion of our module, that spits out the MD5 or SHA1 digest of files:<br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> rc<code style='color:#806030; '>,</code> exists<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_finfo_t finfo<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_file_t<code style='color:#806030; '> *</code>file<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>filename<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>char</code> buffer<code style='color:#806030; '>[</code><code style='color:#c00000; '>256</code><code style='color:#806030; '>]</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_size_t readBytes<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> n<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_table_t<code style='color:#806030; '> *</code>GET<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_array_header_t<code style='color:#806030; '> *</code>POST<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '> *</code>digestType<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Check that the "example-handler" handler is being called. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code> <code style='color:#806030; '>|</code><code style='color:#806030; '>|</code> <code style='color:#800040; '>strcmp</code><code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code><code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>example-handler</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#806030; '>(</code>DECLINED<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Figure out which file is being requested by removing the .sum from it */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh filename <code style='color:#806030; '>=</code> apr_pstrdup<code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>pool</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>filename</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh filename<code style='color:#806030; '>[</code><code style='color:#800040; '>strlen</code><code style='color:#806030; '>(</code>filename<code style='color:#806030; '>)</code><code style='color:#806030; '>-</code><code style='color:#c00000; '>4</code><code style='color:#806030; '>]</code> <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* Cut off the last 4 characters. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Figure out if the file we request a sum on exists and isn't a directory */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh rc <code style='color:#806030; '>=</code> apr_stat<code style='color:#806030; '>(</code><code style='color:#806030; '>&amp;</code>finfo<code style='color:#806030; '>,</code> filename<code style='color:#806030; '>,</code> APR_FINFO_MIN<code style='color:#806030; '>,</code> r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>pool</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code>rc <code style='color:#806030; '>=</code><code style='color:#806030; '>=</code> APR_SUCCESS<code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh exists <code style='color:#806030; '>=</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>(</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>(</code>finfo<code style='color:#806030; '>.</code>filetype <code style='color:#806030; '>!</code><code style='color:#806030; '>=</code> APR_NOFILE<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>&amp;</code><code style='color:#806030; '>&amp;</code> <code style='color:#806030; '>!</code><code style='color:#806030; '>(</code>finfo<code style='color:#806030; '>.</code>filetype <code style='color:#806030; '>&amp;</code> APR_DIR<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>exists<code style='color:#806030; '>)</code> <code style='color:#400000; font-weight:bold; '>return</code> HTTP_NOT_FOUND<code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* Return a 404 if not found. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* If apr_stat failed, we're probably not allowed to check this file. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code> <code style='color:#400000; font-weight:bold; '>return</code> HTTP_FORBIDDEN<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Parse the GET and, optionally, the POST data sent to us */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_args_to_table<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#806030; '>&amp;</code>GET<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_parse_form_data<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#806030; '>&amp;</code>POST<code style='color:#806030; '>,</code> <code style='color:#806030; '>-</code><code style='color:#c00000; '>1</code><code style='color:#806030; '>,</code> <code style='color:#c00000; '>8192</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Set the appropriate content type */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_set_content_type<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>text/html</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Print a title and some general information */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>&lt;h2>Information on </code><code style='color:#0f6900; '>%s</code><code style='color:#e60000; '>:&lt;/h2></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> filename<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>&lt;b>Size:&lt;/b> </code><code style='color:#0f6900; '>%u</code><code style='color:#e60000; '> bytes&lt;br/></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> finfo<code style='color:#806030; '>.</code>size<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Get the digest type the client wants to see */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh digestType <code style='color:#806030; '>=</code> apr_table_get<code style='color:#806030; '>(</code>GET<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>digest</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>digestType<code style='color:#806030; '>)</code> digestType <code style='color:#806030; '>=</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>MD5</code><code style='color:#800000; '>"</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh rc <code style='color:#806030; '>=</code> apr_file_open<code style='color:#806030; '>(</code><code style='color:#806030; '>&amp;</code>file<code style='color:#806030; '>,</code> filename<code style='color:#806030; '>,</code> APR_READ<code style='color:#806030; '>,</code> APR_OS_DEFAULT<code style='color:#806030; '>,</code> r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>pool</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code>rc <code style='color:#806030; '>=</code><code style='color:#806030; '>=</code> APR_SUCCESS<code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Are we trying to calculate the MD5 or the SHA1 digest? */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>strcasecmp<code style='color:#806030; '>(</code>digestType<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>md5</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Calculate the MD5 sum of the file */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>union</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>char</code> chr<code style='color:#806030; '>[</code><code style='color:#c00000; '>16</code><code style='color:#806030; '>]</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh uint32_t num<code style='color:#806030; '>[</code><code style='color:#c00000; '>4</code><code style='color:#806030; '>]</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code> digest<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_md5_ctx_t md5<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_md5_init<code style='color:#806030; '>(</code><code style='color:#806030; '>&amp;</code>md5<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh readBytes <code style='color:#806030; '>=</code> <code style='color:#c00000; '>256</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>while</code> <code style='color:#806030; '>(</code> apr_file_read<code style='color:#806030; '>(</code>file<code style='color:#806030; '>,</code> buffer<code style='color:#806030; '>,</code> <code style='color:#806030; '>&amp;</code>readBytes<code style='color:#806030; '>)</code> <code style='color:#806030; '>=</code><code style='color:#806030; '>=</code> APR_SUCCESS <code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_md5_update<code style='color:#806030; '>(</code><code style='color:#806030; '>&amp;</code>md5<code style='color:#806030; '>,</code> buffer<code style='color:#806030; '>,</code> readBytes<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_md5_final<code style='color:#806030; '>(</code>digest<code style='color:#806030; '>.</code>chr<code style='color:#806030; '>,</code> <code style='color:#806030; '>&amp;</code>md5<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Print out the MD5 digest */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rputs<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>&lt;b>MD5: &lt;/b>&lt;code></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>for</code> <code style='color:#806030; '>(</code>n <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code> n <code style='color:#806030; '>&lt;</code> APR_MD5_DIGESTSIZE<code style='color:#806030; '>/</code><code style='color:#c00000; '>4</code><code style='color:#806030; '>;</code> n<code style='color:#806030; '>+</code><code style='color:#806030; '>+</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#0f6900; '>%08x</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> digest<code style='color:#806030; '>.</code>num<code style='color:#806030; '>[</code>n<code style='color:#806030; '>]</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rputs<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>&lt;/code></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Print a link to the SHA1 version */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rputs<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>&lt;br/>&lt;a href='?digest=sha1'>View the SHA1 hash instead&lt;/a></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Calculate the SHA1 sum of the file */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>union</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>char</code> chr<code style='color:#806030; '>[</code><code style='color:#c00000; '>20</code><code style='color:#806030; '>]</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh uint32_t num<code style='color:#806030; '>[</code><code style='color:#c00000; '>5</code><code style='color:#806030; '>]</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code> digest<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_sha1_ctx_t sha1<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_sha1_init<code style='color:#806030; '>(</code><code style='color:#806030; '>&amp;</code>sha1<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh readBytes <code style='color:#806030; '>=</code> <code style='color:#c00000; '>256</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>while</code> <code style='color:#806030; '>(</code> apr_file_read<code style='color:#806030; '>(</code>file<code style='color:#806030; '>,</code> buffer<code style='color:#806030; '>,</code> <code style='color:#806030; '>&amp;</code>readBytes<code style='color:#806030; '>)</code> <code style='color:#806030; '>=</code><code style='color:#806030; '>=</code> APR_SUCCESS <code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_sha1_update<code style='color:#806030; '>(</code><code style='color:#806030; '>&amp;</code>sha1<code style='color:#806030; '>,</code> buffer<code style='color:#806030; '>,</code> readBytes<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_sha1_final<code style='color:#806030; '>(</code>digest<code style='color:#806030; '>.</code>chr<code style='color:#806030; '>,</code> <code style='color:#806030; '>&amp;</code>sha1<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Print out the SHA1 digest */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rputs<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>&lt;b>SHA1: &lt;/b>&lt;code></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>for</code> <code style='color:#806030; '>(</code>n <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code> n <code style='color:#806030; '>&lt;</code> APR_SHA1_DIGESTSIZE<code style='color:#806030; '>/</code><code style='color:#c00000; '>4</code><code style='color:#806030; '>;</code> n<code style='color:#806030; '>+</code><code style='color:#806030; '>+</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#0f6900; '>%08x</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> digest<code style='color:#806030; '>.</code>num<code style='color:#806030; '>[</code>n<code style='color:#806030; '>]</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rputs<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>&lt;/code></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Print a link to the MD5 version */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rputs<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>&lt;br/>&lt;a href='?digest=md5'>View the MD5 hash instead&lt;/a></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> r<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_file_close<code style='color:#806030; '>(</code>file<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Let Apache know that we responded to this request. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThis version in its entirity can be found here: <a href="mod_example_2.c">mod_example_2.c</a>.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="configuration"><title>Adding configuration options</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn this next segment of this document, we will turn our eyes away from the digest module and create a new
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohexample module, whose only function is to write out its own configuration. The purpose of this is to
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohexamine how Apache works with configuration, and what happens when you start writing advanced configurations
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohfor your modules.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="config_intro"><title>An introduction to configuration directives</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIf you are reading this, then you probably already know what a configuration directive is. Simply put,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooha directive is a way of telling an individual module (or a set of modules) how to behave, such as these
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohdirectives control how <code>mod_rewrite</code> works:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<example><pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohRewriteEngine On
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohRewriteCond %{REQUEST_URI} ^/foo/bar
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohRewriteRule ^/foo/bar/(.*)$ /foobar?page=$1
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre></example>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohEach of these configuration directives are handled by a separate function, that parses the parameters given
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohand sets up a configuration accordingly.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="config_simple"><title>Making an example configuration</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohTo begin with, we'll create a basic configuration in C-space:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>typedef</code> <code style='color:#400000; font-weight:bold; '>struct</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> enabled<code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* Enable or disable our module */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>path<code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* Some path to...something */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> typeOfAction<code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* 1 means action A, 2 means action B and so on */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code> example_config<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohNow, let's put this into perspective by creating a very small module that just prints out a hard-coded
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohconfiguration. You'll notice that we use the <code>register_hooks</code> function for initializing the
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohconfiguration values to their defaults:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>typedef</code> <code style='color:#400000; font-weight:bold; '>struct</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> enabled<code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* Enable or disable our module */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>path<code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* Some path to...something */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> typeOfAction<code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* 1 means action A, 2 means action B and so on */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code> example_config<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> example_config config<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code> <code style='color:#806030; '>|</code><code style='color:#806030; '>|</code> <code style='color:#800040; '>strcmp</code><code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code><code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>example-handler</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#400000; font-weight:bold; '>return</code><code style='color:#806030; '>(</code>DECLINED<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_set_content_type<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>text/plain</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(r, </code><code style='color:#800000; '>"</code><code style='color:#e60000; '>Enabled: </code><code style='color:#0f6900; '>%u</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>.</code>enabled<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(r, </code><code style='color:#800000; '>"</code><code style='color:#e60000; '>Path: </code><code style='color:#0f6900; '>%s</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>.</code>path<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(r, </code><code style='color:#800000; '>"</code><code style='color:#e60000; '>TypeOfAction: </code><code style='color:#0f6900; '>%x</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>.</code>typeOfAction<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>void</code> register_hooks<code style='color:#806030; '>(</code>apr_pool_t <code style='color:#806030; '>*</code>pool<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh config<code style='color:#806030; '>.</code>enabled <code style='color:#806030; '>=</code> <code style='color:#c00000; '>1</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh config<code style='color:#806030; '>.</code>path <code style='color:#806030; '>=</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>/foo/bar</code><code style='color:#800000; '>"</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh config<code style='color:#806030; '>.</code>typeOfAction <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x00</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_hook_handler<code style='color:#806030; '>(</code>example_handler<code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> APR_HOOK_LAST<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* Define our module as an entity and assign a function for registering hooks */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmodule AP_MODULE_DECLARE_DATA example_module <code style='color:#806030; '>=</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh STANDARD20_MODULE_STUFF<code style='color:#806030; '>,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Per-directory configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Merge handler for per-directory configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Per-server configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Merge handler for per-server configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Any directives we may have for httpd */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh register_hooks <code style='color:#c34e00; '>/* Our hook registering function */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohSo far so good. To access our new handler, we could add the following to our configuration:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<example><pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;Location /example&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh SetHandler example-handler
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;/Location&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre></example>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohWhen we visit, we'll see our current configuration being spit out by our module.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="register_directive"><title>Registering directives with Apache</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohWhat if we want to change our configuration, not by hard-coding new values into the module,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohbut by using either the httpd.conf file or possibly a .htaccess file? It's time to let Apache
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohknow that we want this to be possible. To do so, we must first change our <em>name tag</em>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohto include a reference to the configuration directives we want to register with Apache:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmodule AP_MODULE_DECLARE_DATA example_module =
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh{
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh STANDARD20_MODULE_STUFF,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#7f0055; font-weight:bold; '>NULL</code>, <code style='color:#c34e00; '>/* Per-directory configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#7f0055; font-weight:bold; '>NULL</code>, <code style='color:#c34e00; '>/* Merge handler for per-directory configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#7f0055; font-weight:bold; '>NULL</code>, <code style='color:#c34e00; '>/* Per-server configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#7f0055; font-weight:bold; '>NULL</code>, <code style='color:#c34e00; '>/* Merge handler for per-server configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_directives, <code style='color:#c34e00; '>/* Any directives we may have for httpd */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh register_hooks <code style='color:#c34e00; '>/* Our hook registering function */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh};
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThis will tell Apache that we are now accepting directives from the configuration files, and that the
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohstructure called <code>example_directives</code> holds information on what our directives are and how
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohthey work. Since we have three different variables in our module configuration, we will add a structure
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwith three directives and a NULL at the end:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohstatic const command_rec example_directives[] =
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh{
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#2e8800; '><a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#ga07c7d22ae17805e61204463326cf9c34">AP_INIT_TAKE1</a></code>("exampleEnabled", example_set_enabled, <code style='color:#7f0055; font-weight:bold; '>NULL</code>, RSRC_CONF, "Enable or disable mod_example"),
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#2e8800; '><a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#ga07c7d22ae17805e61204463326cf9c34">AP_INIT_TAKE1</a></code>("examplePath", example_set_path, <code style='color:#7f0055; font-weight:bold; '>NULL</code>, RSRC_CONF, "The path to whatever"),
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#2e8800; '><a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#gafaec43534fcf200f37d9fecbf9247c21">AP_INIT_TAKE2</a></code>("exampleAction", example_set_action, <code style='color:#7f0055; font-weight:bold; '>NULL</code>, RSRC_CONF, "Special action value!"),
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh { <code style='color:#7f0055; font-weight:bold; '>NULL</code> }
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh};
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<img src="/images/build_a_mod_4.png" border="1"/><br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohAs you can see, each directive needs at least 5 parameters set:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<ol>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code><a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#ga07c7d22ae17805e61204463326cf9c34">AP_INIT_TAKE1</a></code>: This is a macro that tells Apache that this directive takes one and only one argument.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIf we required two arguments, we could use the macro <code><a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#gafaec43534fcf200f37d9fecbf9247c21">AP_INIT_TAKE2</a></code> and so on (refer to httpd_conf.h
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohfor more macros).</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>exampleEnabled</code>: This is the name of our directive. More precisely, it is what the user must put in his/her
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohconfiguration in order to invoke a configuration change in our module.</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>example_set_enabled</code>: This is a reference to a C function that parses the directive and sets the configuration
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohaccordingly. We will discuss how to make this in the following paragraph.</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>RSRC_CONF</code>: This tells Apache where the directive is permissable. We'll go into details on this value in the
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohlater chapters, but for now, <code>RSRC_CONF</code> means that Apache will only accept these directives in a server context.</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><code>"Enable or disable...."</code>: This is simply a brief description of what the directive does.</li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</ol>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh(<em>The "missing" parameter in our definition, which is usually set to <code>NULL</code>, is an optional function that can be
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohrun after the initial function to parse the arguments have been run. This is usually omitted, as the function for verifying
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooharguments might as well be used to set them.</em>)
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="directive_handler"><title>The directive handler function</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohNow that we've told Apache to expect some directives for our module, it's time to make a few functions for handling these. What
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohApache reads in the configuration file(s) is text, and so naturally, what it passes along to our directive handler is one or
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmore strings, that we ourselves need to recognize and act upon. You'll notice, that since we set our <code>exampleAction</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohdirective to accept two arguments, its C function also has an additional parameter defined:<br/>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* Handler for the "exambleEnabled" directive */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '> *</code>example_set_enabled<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>strcasecmp<code style='color:#806030; '>(</code>arg<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>on</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> config<code style='color:#806030; '>.</code>enabled <code style='color:#806030; '>=</code> <code style='color:#c00000; '>1</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code> config<code style='color:#806030; '>.</code>enabled <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* Handler for the "examplePath" directive */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '> *</code>example_set_path<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh config<code style='color:#806030; '>.</code>path <code style='color:#806030; '>=</code> arg<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* Handler for the "exampleAction" directive */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* Let's pretend this one takes one argument (file or db), and a second (deny or allow), */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* and we store it in a bit-wise manner. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '> *</code>example_set_action<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg1<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '>*</code> arg2<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>strcasecmp<code style='color:#806030; '>(</code>arg1<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>file</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> config<code style='color:#806030; '>.</code>typeOfAction <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x01</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code> config<code style='color:#806030; '>.</code>typeOfAction <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x02</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>strcasecmp<code style='color:#806030; '>(</code>arg2<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>deny</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> config<code style='color:#806030; '>.</code>typeOfAction <code style='color:#806030; '>+</code><code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x10</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code> config<code style='color:#806030; '>.</code>typeOfAction <code style='color:#806030; '>+</code><code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x20</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="directive_complete"><title>Putting it all together</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohNow that we have our directives set up, and handlers configured for them, we can assemble our module
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohinto one big file:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* mod_example_config_simple.c: */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>&lt;</code><code style='color:#40015a; '>stdio.h</code><code style='color:#800000; '>></code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>apr_hash.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>ap_config.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>ap_provider.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>httpd.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>http_core.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>http_config.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>http_log.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>http_protocol.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>http_request.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;Our configuration prototype and declaration:</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>typedef</code> <code style='color:#400000; font-weight:bold; '>struct</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> enabled<code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* Enable or disable our module */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>path<code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* Some path to...something */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> typeOfAction<code style='color:#806030; '>;</code> <code style='color:#c34e00; '>/* 1 means action A, 2 means action B and so on */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code> example_config<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> example_config config<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;Our directive handlers:</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* Handler for the "exambleEnabled" directive */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '> *</code>example_set_enabled<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>strcasecmp<code style='color:#806030; '>(</code>arg<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>on</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> config<code style='color:#806030; '>.</code>enabled <code style='color:#806030; '>=</code> <code style='color:#c00000; '>1</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code> config<code style='color:#806030; '>.</code>enabled <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* Handler for the "examplePath" directive */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '> *</code>example_set_path<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh config<code style='color:#806030; '>.</code>path <code style='color:#806030; '>=</code> arg<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* Handler for the "exampleAction" directive */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* Let's pretend this one takes one argument (file or db), and a second (deny or allow), */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/* and we store it in a bit-wise manner. */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '> *</code>example_set_action<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg1<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '>*</code> arg2<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>strcasecmp<code style='color:#806030; '>(</code>arg1<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>file</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> config<code style='color:#806030; '>.</code>typeOfAction <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x01</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code> config<code style='color:#806030; '>.</code>typeOfAction <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x02</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>strcasecmp<code style='color:#806030; '>(</code>arg2<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>deny</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> config<code style='color:#806030; '>.</code>typeOfAction <code style='color:#806030; '>+</code><code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x10</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code> config<code style='color:#806030; '>.</code>typeOfAction <code style='color:#806030; '>+</code><code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x20</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;The directive structure for our name tag:</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>const</code> command_rec example_directives<code style='color:#806030; '>[</code><code style='color:#806030; '>]</code> <code style='color:#806030; '>=</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#ga07c7d22ae17805e61204463326cf9c34">AP_INIT_TAKE1</a><code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>exampleEnabled</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> example_set_enabled<code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> RSRC_CONF<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Enable or disable mod_example</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#ga07c7d22ae17805e61204463326cf9c34">AP_INIT_TAKE1</a><code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>examplePath</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> example_set_path<code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> RSRC_CONF<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>The path to whatever</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#gafaec43534fcf200f37d9fecbf9247c21">AP_INIT_TAKE2</a><code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>exampleAction</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> example_set_action<code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> RSRC_CONF<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Special action value!</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>{</code> <code style='color:#007d45; '>NULL</code> <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;Our module handler:</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code> <code style='color:#806030; '>|</code><code style='color:#806030; '>|</code> <code style='color:#800040; '>strcmp</code><code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code><code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>example-handler</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#400000; font-weight:bold; '>return</code><code style='color:#806030; '>(</code>DECLINED<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_set_content_type<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>text/plain</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Enabled: </code><code style='color:#0f6900; '>%u</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>.</code>enabled<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Path: </code><code style='color:#0f6900; '>%s</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>.</code>path<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>TypeOfAction: </code><code style='color:#0f6900; '>%x</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>.</code>typeOfAction<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;The hook registration function (also initializes the default config values):</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>void</code> register_hooks<code style='color:#806030; '>(</code>apr_pool_t <code style='color:#806030; '>*</code>pool<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh config<code style='color:#806030; '>.</code>enabled <code style='color:#806030; '>=</code> <code style='color:#c00000; '>1</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh config<code style='color:#806030; '>.</code>path <code style='color:#806030; '>=</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>/foo/bar</code><code style='color:#800000; '>"</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh config<code style='color:#806030; '>.</code>typeOfAction <code style='color:#806030; '>=</code> <code style='color:#c00000; '>3</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_hook_handler<code style='color:#806030; '>(</code>example_handler<code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> APR_HOOK_LAST<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;Our module name tag:</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;==============================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmodule AP_MODULE_DECLARE_DATA example_module <code style='color:#806030; '>=</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh STANDARD20_MODULE_STUFF<code style='color:#806030; '>,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Per-directory configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Merge handler for per-directory configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Per-server configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Merge handler for per-server configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_directives<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Any directives we may have for httpd */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh register_hooks <code style='color:#c34e00; '>/* Our hook registering function */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn our httpd.conf file, we can now change the hard-coded configuration by adding a few lines:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<example><pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohExampleEnabled On
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohExamplePath "/usr/bin/foo"
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohExampleAction file allow
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre></example>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohAnd thus we apply the configuration, visit <code>/example</code> on our web site, and we see the configuration has
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohadapted to what we wrote in our configuration file.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="context"><title>Context aware configurations</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="context_intro"><title>Introduction to context aware configurations</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn Apache, different URLs, virtual hosts, directories etc can have very different meanings
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohto the user of Apache, and thus different contexts within which modules must operate. For example,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohlet's assume you have this configuration set up for mod_rewrite:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<example><pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;Directory &quot;/var/www&quot;&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh RewriteCond %{HTTP_HOST} ^example.com$
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh RewriteRule (.*) http://www.example.com/$1
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;/Directory&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;Directory &quot;/var/www/sub&quot;&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh RewriteRule ^foobar$ index.php?foobar=true
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;/Directory&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre></example>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn this example, you will have set up two different contexts for mod_rewrite:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<ol>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Inside <code>/var/www</code>, all requests for <code>http://example.com</code> must go to <code>http://www.example.com</code></li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Inside <code>/var/www/sub</code>, all requests for <code>foobar</code> must go to <code>index.php?foobar=true</code></li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</ol>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIf mod_rewrite (or Apache for that matter) wasn't context aware, then these rewrite rules would just apply to every and any request made,
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohregardless of where and how they were made, but since the module can pull the context specific configuration straight from Apache, it
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohdoes not need to know itself, which of the directives are valid in this context, since Apache takes care of this.</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohSo how does a module get the specific configuration for the server, directory or location in question? It does so by making one simple call:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohexample_config *config = (example_config*) <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#ga1093a5908a384eacc929b028c79f2a02">ap_get_module_config</a>(<code style='color:#008833'>r-&gt;per_dir_config</code>, &amp;example_module);
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThat's it! Of course, a whole lot goes on behind the scenes, which we will discuss in this chapter, starting with how
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohApache came to know what our configuration looks like, and how it came to be set up as it is in the specific context.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="context_base"><title>Our basic configuration setup</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>In this chapter, we will be working with a slightly modified version of our previous
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohcontext structure. We will set a <code>context</code> variable that we can use to track
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohwhich context configuration is being used by Apache in various places:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>typedef</code> <code style='color:#400000; font-weight:bold; '>struct</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>char</code> context<code style='color:#806030; '>[</code><code style='color:#c00000; '>256</code><code style='color:#806030; '>]</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>char</code> path<code style='color:#806030; '>[</code><code style='color:#c00000; '>256</code><code style='color:#806030; '>]</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> typeOfAction<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> enabled<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code> example_config<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>Our handler for requests will also be modified, yet still very simple:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code> <code style='color:#806030; '>|</code><code style='color:#806030; '>|</code> <code style='color:#800040; '>strcmp</code><code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code><code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>example-handler</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#400000; font-weight:bold; '>return</code><code style='color:#806030; '>(</code>DECLINED<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config<code style='color:#806030; '> *</code>config <code style='color:#806030; '>=</code> <code style='color:#806030; '>(</code>example_config<code style='color:#806030; '>*</code><code style='color:#806030; '>)</code> ap_get_module_config<code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>per_dir_config</code><code style='color:#806030; '>,</code> <code style='color:#806030; '>&amp;</code>example_module<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_set_content_type<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>text/plain</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>Enabled: </code><code style='color:#0f6900; '>%u</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>Path: </code><code style='color:#0f6900; '>%s</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>TypeOfAction: </code><code style='color:#0f6900; '>%x</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>Context: </code><code style='color:#0f6900; '>%s</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>context</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="context_which"><title>Choosing a context</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohBefore we can start making our module context aware, we must first define, which contexts we will accept.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohAs we saw in the previous chapter, defining a directive required five elements be set:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#2e8800; '><a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#ga07c7d22ae17805e61204463326cf9c34">AP_INIT_TAKE1</a></code>(&quot;exampleEnabled&quot;, example_set_enabled, <code style='color:#7f0055; font-weight:bold; '>NULL</code>, RSRC_CONF, &quot;Enable or disable mod_example&quot;),
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThe <code>RSRC_CONF</code> definition told Apache that we would only allow this directive in a global server context, but
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohsince we are now trying out a context aware version of our module, we should set this to something more lenient, namely
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohthe value <code>ACCESS_CONF</code>, which lets us use the directive inside &lt;Directory&gt; and &lt;Location&gt; blocks.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="context_pool"><title>Using Apache to allocate configuration slots</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p> A much smarter way to manage your configurations is by letting Apache help you create them.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohTo do so, we must first start off by chancing our <em>name tag</em> to let Apache know, that
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohit should assist us in creating and managing our configurations. Since we have chosen the per-directory
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh(or per-location) context for our module configurations, we'll add a per-directory creator and merger
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohfunction reference in our tag:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmodule AP_MODULE_DECLARE_DATA example_module <code style='color:#806030; '>=</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh STANDARD20_MODULE_STUFF<code style='color:#806030; '>,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh create_dir_conf<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Per-directory configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh merge_dir_conf<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Merge handler for per-directory configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Per-server configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Merge handler for per-server configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh directives<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Any directives we may have for httpd */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh register_hooks <code style='color:#c34e00; '>/* Our hook registering function */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="context_which"><title>Creating new context configurations</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohNow that we have told Apache to help us create and manage configurations, our first step is to
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmake a function for creating new, blank configurations. We do so by creating the function we just
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohreferenced in our name tag as the Per-directory configuration handler:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>void</code><code style='color:#806030; '>*</code> example_create_dir_conf<code style='color:#806030; '>(</code>apr_pool_t<code style='color:#806030; '>*</code> pool<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>char</code><code style='color:#806030; '>*</code> context<code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh context <code style='color:#806030; '>=</code> context <code style='color:#806030; '>?</code> context <code style='color:#806030; '>:</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>(undefined context)</code><code style='color:#800000; '>"</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config<code style='color:#806030; '> *</code>cfg <code style='color:#806030; '>=</code> apr_pcalloc<code style='color:#806030; '>(</code>pool<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>sizeof</code><code style='color:#806030; '>(</code>example_config<code style='color:#806030; '>)</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code>cfg<code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Set some default values */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#800040; '>strcpy</code><code style='color:#806030; '>(</code>cfg<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>context</code><code style='color:#806030; '>,</code> x<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh cfg<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code> <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh cfg<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code> <code style='color:#806030; '>=</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>/foo/bar</code><code style='color:#800000; '>"</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh cfg<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x11</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> dir<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="context_which"><title>Merging configurations</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohOur next step in creating a context aware configuration is merging configurations. This part of the process
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohparticularly apply to scenarios where you have a parent configuration and a child, such as the following:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<example><pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;Directory &quot;/var/www&quot;&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExampleEnable On
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExamplePath /foo/bar
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExampleAction file allow
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;/Directory&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;Directory &quot;/var/www/subdir&quot;&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExampleAction file deny
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;/Directory&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre></example>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohIn this example, it is natural to assume that the directory <code>/var/www/subdir</code> should inherit the
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohvalue set for the <code>/var/www</code> directory, as we did not specify a <code>ExampleEnable</code> nor an
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code>ExamplePath</code> for this directory. Apache does not presume to know if this is true, but cleverly
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohdoes the following:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<ol>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Creates a new configuration for <code>/var/www</code></li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Sets the configuration values according to the directives given for <code>/var/www</code></li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Creates a new configuration for <code>/var/www/subdir</code></li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li>Sets the configuration values according to the directives given for <code>/var/www/subdir</code></li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<li><strong>Proposes a merge</strong> of the two configurations into a new configuration for <code>/var/www/subdir</code></li>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</ol>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThis proposal is handled by the <code>merge_dir_conf</code> function we referenced in our name tag. The purpose of
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohthis function is to assess the two configurations and decide how they are to be merged:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>void</code><code style='color:#806030; '>*</code> merge_dir_conf<code style='color:#806030; '>(</code>apr_pool_t<code style='color:#806030; '>*</code> pool<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code><code style='color:#806030; '>*</code> BASE<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code><code style='color:#806030; '>*</code> ADD<code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config<code style='color:#806030; '>*</code> base <code style='color:#806030; '>=</code> BASE <code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config<code style='color:#806030; '>*</code> add <code style='color:#806030; '>=</code> ADD <code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config<code style='color:#806030; '>*</code> conf <code style='color:#806030; '>=</code> create_dir_conf<code style='color:#806030; '>(</code>pool<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Merged configuration</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code> <code style='color:#806030; '>=</code> <code style='color:#806030; '>(</code> add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code> <code style='color:#806030; '>=</code><code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code> <code style='color:#806030; '>)</code> <code style='color:#806030; '>?</code> base<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code> <code style='color:#806030; '>:</code> add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code> <code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>=</code> add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>?</code> add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>:</code> base<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#800040; '>strcpy</code><code style='color:#806030; '>(</code>conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code><code style='color:#806030; '>,</code> <code style='color:#800040; '>strlen</code><code style='color:#806030; '>(</code>add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>?</code> add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code> <code style='color:#806030; '>:</code> base<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> conf <code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="context_which"><title>Trying out our new context aware configurations</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohNow, let's try putting it all together to create a new module that it context aware. First off, we'll
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohcreate a configuration that lets us test how the module works:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<example><pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;Location &quot;/a&quot;&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh SetHandler example-handler
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExampleEnabled on
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExamplePath &quot;/foo/bar&quot;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExampleAction file allow
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;/Location&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;Location &quot;/a/b&quot;&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExampleAction file deny
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExampleEnabled off
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;/Location&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;Location &quot;/a/b/c&quot;&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExampleAction db deny
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExamplePath &quot;/foo/bar/baz&quot;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ExampleEnabled on
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh&lt;/Location&gt;
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre></example>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohThen we'll assemble our module code. Note, that since we are now using our name tag as reference when fetching
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohconfigurations in our handler, I have added some prototypes to keep the compiler happy:
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*$6</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;* mod_example_config.c</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>&lt;</code><code style='color:#40015a; '>stdio.h</code><code style='color:#800000; '>></code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>apr_hash.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>ap_config.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>ap_provider.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>httpd.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>http_core.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>http_config.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>http_log.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>http_protocol.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#004a43; '>#</code><code style='color:#004a43; '>include </code><code style='color:#800000; '>"</code><code style='color:#40015a; '>http_request.h</code><code style='color:#800000; '>"</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*$1</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Configuration structure</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>typedef</code> <code style='color:#400000; font-weight:bold; '>struct</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>char</code> context<code style='color:#806030; '>[</code><code style='color:#c00000; '>256</code><code style='color:#806030; '>]</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>char</code> path<code style='color:#806030; '>[</code><code style='color:#c00000; '>256</code><code style='color:#806030; '>]</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> typeOfAction<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> enabled<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code> example_config<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*$1</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Prototypes</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>example_set_enabled<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>example_set_path<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>example_set_action<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg1<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg2<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>create_dir_conf<code style='color:#806030; '>(</code>apr_pool_t <code style='color:#806030; '>*</code>pool<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>context<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>merge_dir_conf<code style='color:#806030; '>(</code>apr_pool_t <code style='color:#806030; '>*</code>pool<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>BASE<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>ADD<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>void</code> register_hooks<code style='color:#806030; '>(</code>apr_pool_t <code style='color:#806030; '>*</code>pool<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*$1</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Configuration directives</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>const</code> command_rec directives<code style='color:#806030; '>[</code><code style='color:#806030; '>]</code> <code style='color:#806030; '>=</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#ga07c7d22ae17805e61204463326cf9c34">AP_INIT_TAKE1</a><code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>exampleEnabled</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> example_set_enabled<code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> ACCESS_CONF<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Enable or disable mod_example</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#ga07c7d22ae17805e61204463326cf9c34">AP_INIT_TAKE1</a><code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>examplePath</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> example_set_path<code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> ACCESS_CONF<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>The path to whatever</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <a href="http://ci.apache.org/projects/httpd/trunk/doxygen/group__APACHE__CORE__CONFIG.html#gafaec43534fcf200f37d9fecbf9247c21">AP_INIT_TAKE2</a><code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>exampleAction</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> example_set_action<code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> ACCESS_CONF<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Special action value!</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>{</code> <code style='color:#007d45; '>NULL</code> <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*$1</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Our name tag</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohmodule AP_MODULE_DECLARE_DATA example_module <code style='color:#806030; '>=</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh STANDARD20_MODULE_STUFF<code style='color:#806030; '>,</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh create_dir_conf<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Per-directory configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh merge_dir_conf<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Merge handler for per-directory configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Per-server configuration handler */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Merge handler for per-server configurations */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh directives<code style='color:#806030; '>,</code> <code style='color:#c34e00; '>/* Any directives we may have for httpd */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh register_hooks <code style='color:#c34e00; '>/* Our hook registering function */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Hook registration function</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>void</code> register_hooks<code style='color:#806030; '>(</code>apr_pool_t <code style='color:#806030; '>*</code>pool<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_hook_handler<code style='color:#806030; '>(</code>example_handler<code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> APR_HOOK_LAST<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Our example web service handler</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code> <code style='color:#806030; '>|</code><code style='color:#806030; '>|</code> <code style='color:#800040; '>strcmp</code><code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code><code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>example-handler</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#400000; font-weight:bold; '>return</code><code style='color:#806030; '>(</code>DECLINED<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config <code style='color:#806030; '>*</code>config <code style='color:#806030; '>=</code> <code style='color:#806030; '>(</code>example_config <code style='color:#806030; '>*</code><code style='color:#806030; '>)</code> ap_get_module_config<code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>per_dir_config</code><code style='color:#806030; '>,</code> <code style='color:#806030; '>&amp;</code>example_module<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_set_content_type<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>text/plain</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Enabled: </code><code style='color:#0f6900; '>%u</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Path: </code><code style='color:#0f6900; '>%s</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>TypeOfAction: </code><code style='color:#0f6900; '>%x</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Context: </code><code style='color:#0f6900; '>%s</code><code style='color:#0f6900; '>\n</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> config<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>context</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Handler for the "exambleEnabled" directive</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>example_set_enabled<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config <code style='color:#806030; '>*</code>conf <code style='color:#806030; '>=</code> <code style='color:#806030; '>(</code>example_config <code style='color:#806030; '>*</code><code style='color:#806030; '>)</code> cfg<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code>conf<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>strcasecmp<code style='color:#806030; '>(</code>arg<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>on</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code> <code style='color:#806030; '>=</code> <code style='color:#c00000; '>1</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code> <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Handler for the "examplePath" directive</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>example_set_path<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config <code style='color:#806030; '>*</code>conf <code style='color:#806030; '>=</code> <code style='color:#806030; '>(</code>example_config <code style='color:#806030; '>*</code><code style='color:#806030; '>)</code> cfg<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code>conf<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#800040; '>strcpy</code><code style='color:#806030; '>(</code>conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code><code style='color:#806030; '>,</code> arg<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Handler for the "exampleAction" directive ;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Let's pretend this one takes one argument (file or db), and a second (deny or allow), ;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;and we store it in a bit-wise manner.</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>example_set_action<code style='color:#806030; '>(</code>cmd_parms <code style='color:#806030; '>*</code>cmd<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>cfg<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg1<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>arg2<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config <code style='color:#806030; '>*</code>conf <code style='color:#806030; '>=</code> <code style='color:#806030; '>(</code>example_config <code style='color:#806030; '>*</code><code style='color:#806030; '>)</code> cfg<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code>conf<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>strcasecmp<code style='color:#806030; '>(</code>arg1<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>file</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x01</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x02</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>strcasecmp<code style='color:#806030; '>(</code>arg2<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>deny</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>+</code><code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x10</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>+</code><code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x20</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Function for creating new configurations for per-directory contexts</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>create_dir_conf<code style='color:#806030; '>(</code>apr_pool_t <code style='color:#806030; '>*</code>pool<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>context<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh context <code style='color:#806030; '>=</code> context <code style='color:#806030; '>?</code> context <code style='color:#806030; '>:</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Newly created configuration</code><code style='color:#800000; '>"</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config <code style='color:#806030; '>*</code>cfg <code style='color:#806030; '>=</code> apr_pcalloc<code style='color:#806030; '>(</code>pool<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>sizeof</code><code style='color:#806030; '>(</code>example_config<code style='color:#806030; '>)</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code>cfg<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/* Set some default values */</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#800040; '>strcpy</code><code style='color:#806030; '>(</code>cfg<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>context</code><code style='color:#806030; '>,</code> context<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh cfg<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code> <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#800040; '>memset</code><code style='color:#806030; '>(</code>cfg<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code><code style='color:#806030; '>,</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>,</code> <code style='color:#c00000; '>256</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh cfg<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0x00</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> cfg<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>/*</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;Merging function for configurations</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;=======================================================================================================================</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#c34e00; '>&#xa0;*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>merge_dir_conf<code style='color:#806030; '>(</code>apr_pool_t <code style='color:#806030; '>*</code>pool<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>BASE<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>void</code> <code style='color:#806030; '>*</code>ADD<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config <code style='color:#806030; '>*</code>base <code style='color:#806030; '>=</code> BASE<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config <code style='color:#806030; '>*</code>add <code style='color:#806030; '>=</code> ADD<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh example_config <code style='color:#806030; '>*</code>conf <code style='color:#806030; '>=</code> create_dir_conf<code style='color:#806030; '>(</code>pool<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>Merged configuration</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code> <code style='color:#806030; '>=</code> <code style='color:#806030; '>(</code>add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code> <code style='color:#806030; '>=</code><code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>?</code> base<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code> <code style='color:#806030; '>:</code> add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>enabled</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>=</code> add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>?</code> add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code> <code style='color:#806030; '>:</code> base<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>typeOfAction</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#800040; '>strcpy</code><code style='color:#806030; '>(</code>conf<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code><code style='color:#806030; '>,</code> <code style='color:#800040; '>strlen</code><code style='color:#806030; '>(</code>add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>?</code> add<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code> <code style='color:#806030; '>:</code> base<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>path</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> conf<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="summary"><title>Summing up</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohWe have now looked at how to create simple modules for Apache and configuring them. What you do next is entirely up
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohto you, but it is my hope that something valuable has come out of reading this documentation. If you have questions
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohon how to further develop modules, you are welcome to join our <a href="http://httpd.apache.org/lists.html">mailing lists</a>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedoohor check out the rest of our documentation for further tips.
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</p>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="snippets"><title>Some useful snippets of code</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<section id="get_post"><title>Retrieve a variable from POST form data</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>read_post_value<code style='color:#806030; '>(</code><code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>key<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>const</code> apr_array_header_t <code style='color:#806030; '>*</code>fields<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> i<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_table_entry_t <code style='color:#806030; '>*</code>e <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh e <code style='color:#806030; '>=</code> <code style='color:#806030; '>(</code>apr_table_entry_t <code style='color:#806030; '>*</code><code style='color:#806030; '>)</code> fields<code style='color:#806030; '>-</code><code style='color:#806030; '>></code>elts<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>for</code><code style='color:#806030; '>(</code>i <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code> i <code style='color:#806030; '>&lt;</code> fields<code style='color:#806030; '>-</code><code style='color:#806030; '>></code>nelts<code style='color:#806030; '>;</code> i<code style='color:#806030; '>+</code><code style='color:#806030; '>+</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>!</code><code style='color:#800040; '>strcmp</code><code style='color:#806030; '>(</code>e<code style='color:#806030; '>[</code>i<code style='color:#806030; '>]</code><code style='color:#806030; '>.</code>key<code style='color:#806030; '>,</code> key<code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#400000; font-weight:bold; '>return</code> e<code style='color:#806030; '>[</code>i<code style='color:#806030; '>]</code><code style='color:#806030; '>.</code>val<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_req <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_array_header_t <code style='color:#806030; '>*</code>POST<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>value<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_parse_form_data<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#007d45; '>NULL</code><code style='color:#806030; '>,</code> <code style='color:#806030; '>&amp;</code>POST<code style='color:#806030; '>,</code> <code style='color:#806030; '>-</code><code style='color:#c00000; '>1</code><code style='color:#806030; '>,</code> <code style='color:#c00000; '>8192</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh value <code style='color:#806030; '>=</code> read_post_value<code style='color:#806030; '>(</code>POST<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>valueA</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>value<code style='color:#806030; '>)</code> value <code style='color:#806030; '>=</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>(undefined)</code><code style='color:#800000; '>"</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>The value of valueA is: </code><code style='color:#0f6900; '>%s</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> value<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh </pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh </section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <section id="headers_out"><title>Printing out every HTTP header received</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_req <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>const</code> apr_array_header_t <code style='color:#806030; '>*</code>fields<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> i<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_table_entry_t <code style='color:#806030; '>*</code>e <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh fields <code style='color:#806030; '>=</code> <a href="http://apr.apache.org/docs/apr/1.4/group__apr__tables.html#gaea3005541cce67481f48ab201b5c0cf3">apr_table_elts</a><code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code>headers_in<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh e <code style='color:#806030; '>=</code> <code style='color:#806030; '>(</code>apr_table_entry_t <code style='color:#806030; '>*</code><code style='color:#806030; '>)</code> fields<code style='color:#806030; '>-</code><code style='color:#806030; '>></code>elts<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>for</code><code style='color:#806030; '>(</code>i <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code> i <code style='color:#806030; '>&lt;</code> fields<code style='color:#806030; '>-</code><code style='color:#806030; '>></code>nelts<code style='color:#806030; '>;</code> i<code style='color:#806030; '>+</code><code style='color:#806030; '>+</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>&lt;b></code><code style='color:#0f6900; '>%s</code><code style='color:#e60000; '>&lt;/b>: </code><code style='color:#0f6900; '>%s</code><code style='color:#e60000; '>&lt;br/></code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> e<code style='color:#806030; '>[</code>i<code style='color:#806030; '>]</code><code style='color:#806030; '>.</code>key<code style='color:#806030; '>,</code> e<code style='color:#806030; '>[</code>i<code style='color:#806030; '>]</code><code style='color:#806030; '>.</code>val<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh </pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh </section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <section id="request_body"><title>Reading the request body into memory</title>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- BEGIN EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<pre style='color:#000000;background:#ffffef;border: 1px dashed #333; padding: 0.5em; margin: 1em 2em 1em 1em;'>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> util_read<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code><code style='color:#806030; '>*</code>rbuf<code style='color:#806030; '>,</code> apr_off_t <code style='color:#806030; '>*</code>size<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>int</code> rc <code style='color:#806030; '>=</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>(</code>rc <code style='color:#806030; '>=</code> ap_setup_client_block<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> REQUEST_CHUNKED_ERROR<code style='color:#806030; '>)</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code><code style='color:#806030; '>(</code>rc<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code>ap_should_client_block<code style='color:#806030; '>(</code>r<code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>char</code> argsbuffer<code style='color:#806030; '>[</code>HUGE_STRING_LEN<code style='color:#806030; '>]</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_off_t rsize<code style='color:#806030; '>,</code> len_read<code style='color:#806030; '>,</code> rpos <code style='color:#806030; '>=</code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_off_t length <code style='color:#806030; '>=</code> r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>remaining</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>*</code>rbuf <code style='color:#806030; '>=</code> <code style='color:#806030; '>(</code><code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code><code style='color:#806030; '>)</code> apr_pcalloc<code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>pool</code><code style='color:#806030; '>,</code> <code style='color:#806030; '>(</code>apr_size_t<code style='color:#806030; '>)</code> <code style='color:#806030; '>(</code>length <code style='color:#806030; '>+</code> <code style='color:#c00000; '>1</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>*</code>size <code style='color:#806030; '>=</code> length<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>while</code><code style='color:#806030; '>(</code><code style='color:#806030; '>(</code>len_read <code style='color:#806030; '>=</code> ap_get_client_block<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> argsbuffer<code style='color:#806030; '>,</code> <code style='color:#400000; font-weight:bold; '>sizeof</code><code style='color:#806030; '>(</code>argsbuffer<code style='color:#806030; '>)</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>></code> <code style='color:#c00000; '>0</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code><code style='color:#806030; '>(</code>rpos <code style='color:#806030; '>+</code> len_read<code style='color:#806030; '>)</code> <code style='color:#806030; '>></code> length<code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh rsize <code style='color:#806030; '>=</code> length <code style='color:#806030; '>-</code> rpos<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>else</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh rsize <code style='color:#806030; '>=</code> len_read<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#800040; '>memcpy</code><code style='color:#806030; '>(</code><code style='color:#806030; '>(</code><code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code><code style='color:#806030; '>)</code> <code style='color:#806030; '>*</code>rbuf <code style='color:#806030; '>+</code> rpos<code style='color:#806030; '>,</code> argsbuffer<code style='color:#806030; '>,</code> <code style='color:#806030; '>(</code><code style='color:#800040; '>size_t</code><code style='color:#806030; '>)</code> rsize<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh rpos <code style='color:#806030; '>+</code><code style='color:#806030; '>=</code> rsize<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code><code style='color:#806030; '>(</code>rc<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_req<code style='color:#806030; '>*</code> r<code style='color:#806030; '>)</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh apr_off_t size<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>const</code> <code style='color:#400000; font-weight:bold; '>char</code> <code style='color:#806030; '>*</code>buffer<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#c34e00; '>/*~~~~~~~~~~~~~~~~*/</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>if</code><code style='color:#806030; '>(</code>util_read<code style='color:#806030; '>(</code>r<code style='color:#806030; '>,</code> <code style='color:#806030; '>&amp;</code>data<code style='color:#806030; '>,</code> <code style='color:#806030; '>&amp;</code>size<code style='color:#806030; '>)</code> <code style='color:#806030; '>=</code><code style='color:#806030; '>=</code> OK<code style='color:#806030; '>)</code> <code style='color:#806030; '>{</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh ap_rprintf<code style='color:#806030; '>(</code><code style='color:#800000; '>"</code><code style='color:#e60000; '>We read a request body that was </code><code style='color:#0f6900; '>%u</code><code style='color:#e60000; '> bytes long</code><code style='color:#800000; '>"</code><code style='color:#806030; '>,</code> size<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh <code style='color:#400000; font-weight:bold; '>return</code> OK<code style='color:#806030; '>;</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<code style='color:#806030; '>}</code>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh </pre>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh<!-- END EXAMPLE CODE -->
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh </section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</section>
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh
c955b5a85313893f7bf55aaa5aacbd946cb41570humbedooh</manualpage>