You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2009/10/03 18:20:35 UTC

svn commit: r821352 [15/34] - /httpd/site/trunk/docs/dev/apidoc/

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_common_vars.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_common_vars.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_common_vars.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_common_vars.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,83 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_add_common_vars</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_add_common_vars</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_add_common_vars(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+ap_add_common_vars(r);
+     </pre>
+    </dd>
+   </dl>
+<p>
+Adds common variables to the subprocess (child) environment by
+inserting them into a <a href="apidoc_request_rec.html">request_rec</a>'s <code>subprocess_env</code> <a href="apidoc_table.html">table</a>.
+Variables placed there are:
+</p>
+<ul>
+ <li>CGI variables (see <code><a href="apidoc_ap_add_cgi_vars.html">ap_add_cgi_vars</a></code>)</li>
+ <li><code>CONTENT_TYPE</code></li>
+ <li><code>CONTENT_LENGTH</code></li>
+ <li><code>PATH</code></li>
+ <li><code>SERVER_NAME</code></li>
+ <li><code>SERVER_PORT</code></li>
+ <li><code>REMOTE_HOST</code></li>
+ <li><code>REMOTE_ADDR</code></li>
+ <li><code>DOCUMENT_ROOT</code></li>
+ <li><code>SERVER_ADMIN</code></li>
+ <li><code>SCRIPT_FILENAME</code></li>
+ <li><code>REMOTE_PORT</code></li>
+ <li><code>REMOTE_USER</code></li>
+ <li><code>REMOTE_IDENT</code></li>
+</ul>
+<p>
+If the request is the result of an error redirect, the following
+will also be set:
+</p>
+<ul>
+ <li><code>REDIRECT_QUERY_STRING</code></li>
+ <li><code>REDIRECT_URL</code></li>
+</ul>
+<p>
+The following are also added in when Apache is running in a Windows
+environment:
+</p>
+<ul>
+ <li><code>SystemRoot</code></li>
+ <li><code>COMSPEC</code></li>
+ <li><code>WINDIR</code></li>
+</ul>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_add_cgi_vars.html"><code>ap_add_cgi_vars</code></a>
+  Next: <a href="apidoc_ap_add_loaded_module.html"><code>ap_add_loaded_module</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_common_vars.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_common_vars.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_common_vars.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_loaded_module.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_loaded_module.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_loaded_module.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_loaded_module.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,67 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_add_loaded_module</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_add_loaded_module</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_add_loaded_module(<a href="apidoc_module.html">module</a> *m);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_module.html">module</a> mod; 
+ap_add_loaded_module(mod);
+     </pre>
+    </dd>
+   </dl>
+<p>
+This routine links the specified module record into the core
+server's list of available modules.  The <a href="apidoc_module.html">module</a> in question must
+already have been loaded into memory, either as a DSO or by
+being statically linked into the server.
+</p>
+<blockquote>
+ <b>This routine should not be called unless you are <i>very</i>
+ sure you know what you're doing, as it can render the server
+ unstable if not used correctly.</b>
+</blockquote>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_add_module.html"><samp>ap_add_module</samp></a>,
+        <a href="apidoc_ap_add_named_module.html"><samp>ap_add_named_module</samp></a>,
+        <a href="apidoc_ap_remove_loaded_module.html"><samp>ap_remove_loaded_module</samp></a>,
+        <a href="apidoc_ap_remove_module.html"><samp>ap_remove_module</samp></a>,
+        <a href="apidoc_core_module.html"><samp>core_module</samp></a>,
+        <a href="apidoc_module.html"><samp>module</samp></a>,
+        <a href="apidoc_top_module.html"><samp>top_module</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_add_common_vars.html"><code>ap_add_common_vars</code></a>
+  Next: <a href="apidoc_ap_add_module.html"><code>ap_add_module</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_loaded_module.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_loaded_module.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_loaded_module.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_module.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_module.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_module.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_module.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,58 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_add_module</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_add_module</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_add_module(<a href="apidoc_module.html">module</a> *m);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_module.html">module</a> mod; 
+ap_add_module(mod);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_add_loaded_module.html"><samp>ap_add_loaded_module</samp></a>,
+        <a href="apidoc_ap_add_named_module.html"><samp>ap_add_named_module</samp></a>,
+        <a href="apidoc_ap_remove_loaded_module.html"><samp>ap_remove_loaded_module</samp></a>,
+        <a href="apidoc_ap_remove_module.html"><samp>ap_remove_module</samp></a>,
+        <a href="apidoc_core_module.html"><samp>core_module</samp></a>,
+        <a href="apidoc_module.html"><samp>module</samp></a>,
+        <a href="apidoc_top_module.html"><samp>top_module</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_add_loaded_module.html"><code>ap_add_loaded_module</code></a>
+  Next: <a href="apidoc_ap_add_named_module.html"><code>ap_add_named_module</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_module.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_module.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_module.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_named_module.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_named_module.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_named_module.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_named_module.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,59 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_add_named_module</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_add_named_module</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_add_named_module(const char *name);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+char *modname; 
+int result; 
+result = ap_add_named_module(modname);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_add_loaded_module.html"><samp>ap_add_loaded_module</samp></a>,
+        <a href="apidoc_ap_add_module.html"><samp>ap_add_module</samp></a>,
+        <a href="apidoc_ap_remove_loaded_module.html"><samp>ap_remove_loaded_module</samp></a>,
+        <a href="apidoc_ap_remove_module.html"><samp>ap_remove_module</samp></a>,
+        <a href="apidoc_core_module.html"><samp>core_module</samp></a>,
+        <a href="apidoc_module.html"><samp>module</samp></a>,
+        <a href="apidoc_top_module.html"><samp>top_module</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_add_module.html"><code>ap_add_module</code></a>
+  Next: <a href="apidoc_ap_add_per_dir_conf.html"><code>ap_add_per_dir_conf</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_named_module.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_named_module.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_named_module.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_dir_conf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_dir_conf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_dir_conf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_dir_conf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,51 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_add_per_dir_conf</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_add_per_dir_conf</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_add_per_dir_conf(<a href="apidoc_server_rec.html">server_rec</a> *s, void *dir_config);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<i>Private to the Apache core server; not for <a href="apidoc_module.html">module</a> use.</i>
+     </pre>
+    </dd>
+   </dl>
+<p>
+Add per-directory configuration entry (for &lt;Directory&gt; section);
+these are part of the core server config.
+</p>
+<p>
+Returns a core_server_config structure.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_add_named_module.html"><code>ap_add_named_module</code></a>
+  Next: <a href="apidoc_ap_add_per_url_conf.html"><code>ap_add_per_url_conf</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_dir_conf.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_dir_conf.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_dir_conf.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_url_conf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_url_conf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_url_conf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_url_conf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,48 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_add_per_url_conf</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_add_per_url_conf</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_add_per_url_conf(<a href="apidoc_server_rec.html">server_rec</a> *s, void *url_config);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+server_rec *s;
+void *url_config;
+ap_add_per_url_conf(<a href="apidoc_server_rec.html">server_rec</a> *s, void *url_config);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_add_per_dir_conf.html"><code>ap_add_per_dir_conf</code></a>
+  Next: <a href="apidoc_ap_add_version_component.html"><code>ap_add_version_component</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_url_conf.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_url_conf.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_per_url_conf.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_version_component.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_version_component.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_version_component.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_version_component.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,68 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_add_version_component</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_add_version_component</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_add_version_component(const char *component);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+/*
+ * Called during modules-init phase
+ */
+ap_add_version_component("MyMod/1.0");
+     </pre>
+    </dd>
+   </dl>
+  <p>
+  This routine adds the specified component identification to
+  the string used as the value of the <SAMP>Server:</SAMP> response
+  header field.  It may only be called during the <a href="apidoc_module.html">module</a> init phase, and
+  the value must either be a valid component version string (<EM>i.e.</EM>,
+  <SAMP>"<EM>component-name</EM>/<EM>n</EM>.<EM>n</EM>"</SAMP>) or a
+  parenthesis-enclosed comment (<EM>e.g.</EM>, <SAMP>"(comment)"</SAMP>).
+  </p>
+  <p>
+  Whether this additional server identification information is actually
+  included in the response header field depends upon the setting of the
+  <A HREF="http://www.apache.org/docs/mod/core.html#servertokens"
+  ><SAMP>ServerTokens</SAMP></A> configuration directive (<EM>q.v.</EM>).
+  </p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_get_server_built.html"><samp>ap_get_server_built</samp></a>,
+        <a href="apidoc_ap_get_server_name.html"><samp>ap_get_server_name</samp></a>,
+        <a href="apidoc_ap_get_server_version.html"><samp>ap_get_server_version</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_add_per_url_conf.html"><code>ap_add_per_url_conf</code></a>
+  Next: <a href="apidoc_ap_allow_options.html"><code>ap_allow_options</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_version_component.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_version_component.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_add_version_component.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_options.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_options.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_options.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_options.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,73 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_allow_options</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_allow_options</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_allow_options(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+int result;
+result = ap_allow_options(r);
+if (result &amp; <a href="apidoc_OPT_INCLUDES.html">OPT_INCLUDES</a>) {
+    /* Do something meaningful and Includes-related */
+} 
+     </pre>
+    </dd>
+   </dl>
+<p>
+This routine returns a list of the options that are allowed for
+the specified request, specified as a bitmask.  Use the various
+<code>OPT_*</code> constants (such as <code><a href="apidoc_OPT_MULTI.html">OPT_MULTI</a></code>)
+to mask out specific bits.  Note that when checking
+<code><a href="apidoc_OPT_NONE.html">OPT_NONE</a></code>, you should check the return value for
+equality, and that for <code><a href="apidoc_OPT_ALL.html">OPT_ALL</a></code> you should perform
+a bitwise AND and compare the result against <code><a href="apidoc_OPT_ALL.html">OPT_ALL</a></code>
+to ensure that all of the bits are set.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_OPT_ALL.html"><samp>OPT_ALL</samp></a>,
+        <a href="apidoc_OPT_EXECCGI.html"><samp>OPT_EXECCGI</samp></a>,
+        <a href="apidoc_OPT_INCLUDES.html"><samp>OPT_INCLUDES</samp></a>,
+        <a href="apidoc_OPT_INCNOEXEC.html"><samp>OPT_INCNOEXEC</samp></a>,
+        <a href="apidoc_OPT_INDEXES.html"><samp>OPT_INDEXES</samp></a>,
+        <a href="apidoc_OPT_MULTI.html"><samp>OPT_MULTI</samp></a>,
+        <a href="apidoc_OPT_NONE.html"><samp>OPT_NONE</samp></a>,
+        <a href="apidoc_OPT_SYM_LINKS.html"><samp>OPT_SYM_LINKS</samp></a>,
+        <a href="apidoc_OPT_SYM_OWNER.html"><samp>OPT_SYM_OWNER</samp></a>,
+        <a href="apidoc_OPT_UNSET.html"><samp>OPT_UNSET</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_add_version_component.html"><code>ap_add_version_component</code></a>
+  Next: <a href="apidoc_ap_allow_overrides.html"><code>ap_allow_overrides</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_options.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_options.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_options.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_overrides.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_overrides.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_overrides.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_overrides.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,61 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_allow_overrides</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_allow_overrides</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_allow_overrides(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+int result;
+result = ap_allow_overrides(r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ACCESS_CONF.html"><samp>ACCESS_CONF</samp></a>,
+        <a href="apidoc_cmd_parms.html"><samp>cmd_parms</samp></a>,
+        <a href="apidoc_command_rec.html"><samp>command_rec</samp></a>,
+        <a href="apidoc_OR_AUTHCFG.html"><samp>OR_AUTHCFG</samp></a>,
+        <a href="apidoc_OR_FILEINFO.html"><samp>OR_FILEINFO</samp></a>,
+        <a href="apidoc_OR_INDEXES.html"><samp>OR_INDEXES</samp></a>,
+        <a href="apidoc_OR_LIMIT.html"><samp>OR_LIMIT</samp></a>,
+        <a href="apidoc_OR_OPTIONS.html"><samp>OR_OPTIONS</samp></a>,
+        <a href="apidoc_RSRC_CONF.html"><samp>RSRC_CONF</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_allow_options.html"><code>ap_allow_options</code></a>
+  Next: <a href="apidoc_ap_append_arrays.html"><code>ap_append_arrays</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_overrides.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_overrides.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_allow_overrides.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_append_arrays.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_append_arrays.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_append_arrays.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_append_arrays.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,63 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_append_arrays</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_append_arrays</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+array_header *ap_append_arrays(<a href="apidoc_pool.html">pool</a> *p, const array_header *a, const <a href="apidoc_array_header.html">array_header</a> *b);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+new-&gt;hdr_list = ap_append_arrays(p, add-&gt;hdr_list, base-&gt;hdr_list);
+     </pre>
+    </dd>
+   </dl>
+<p>
+Makes a new array consisting of <EM>b</EM> appended to <EM>a</EM>.
+If <EM>b</EM>
+is empty, the new array is the same as <EM>a</EM> until a new element is added.
+This is a result of using ap_copy_array_header to make the new array.
+</p>
+<p>
+Returns a pointer to the new array.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_array_cat.html"><samp>ap_array_cat</samp></a>,
+        <a href="apidoc_ap_copy_array.html"><samp>ap_copy_array</samp></a>,
+        <a href="apidoc_ap_copy_array_hdr.html"><samp>ap_copy_array_hdr</samp></a>,
+        <a href="apidoc_ap_make_array.html"><samp>ap_make_array</samp></a>,
+        <a href="apidoc_ap_push_array.html"><samp>ap_push_array</samp></a>,
+        <a href="apidoc_array_header.html"><samp>array_header</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_allow_overrides.html"><code>ap_allow_overrides</code></a>
+  Next: <a href="apidoc_ap_array_cat.html"><code>ap_array_cat</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_append_arrays.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_append_arrays.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_append_arrays.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_cat.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_cat.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_cat.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_cat.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,60 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_array_cat</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_array_cat</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_array_cat(array_header *dst, const <a href="apidoc_array_header.html">array_header</a> *src);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_array_cat(&amp;res-&gt;a, &amp;base-&gt;second);
+     </pre>
+    </dd>
+   </dl>
+<p>
+Appends <EM>src</EM> to <EM>dst</EM>. <EM>dst</EM> is extended if necessary.
+</p>
+<p>
+NOTE: There is no check for equal size of <EM>src</EM> and <EM>dst</EM>.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_append_arrays.html"><samp>ap_append_arrays</samp></a>,
+        <a href="apidoc_ap_copy_array.html"><samp>ap_copy_array</samp></a>,
+        <a href="apidoc_ap_copy_array_hdr.html"><samp>ap_copy_array_hdr</samp></a>,
+        <a href="apidoc_ap_make_array.html"><samp>ap_make_array</samp></a>,
+        <a href="apidoc_ap_push_array.html"><samp>ap_push_array</samp></a>,
+        <a href="apidoc_array_header.html"><samp>array_header</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_append_arrays.html"><code>ap_append_arrays</code></a>
+  Next: <a href="apidoc_ap_array_pstrcat.html"><code>ap_array_pstrcat</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_cat.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_cat.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_cat.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_pstrcat.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_pstrcat.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_pstrcat.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_pstrcat.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,57 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_array_pstrcat</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_array_pstrcat</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+char *ap_array_pstrcat(<a href="apidoc_pool.html">pool</a> *p, const <a href="apidoc_array_header.html">array_header</a> *arr, const char sep);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+lang = ap_array_pstrcat(r-&gt;<a href="apidoc_pool.html">pool</a>, variant-&gt;content_languages, ',');
+     </pre>
+    </dd>
+   </dl>
+<p>
+This routine returns a pointer to a string composed of all the values in the
+specified array, separated by the designated delimiter character.
+The string is allocated from the specified <a href="apidoc_pool.html">pool</a>.
+</p>
+<p>
+<b>Note:</b> This routine assumes that each array element consists
+simply of a <code>char&nbsp;*</code> pointer (such as created by a
+<code><a href="apidoc_ap_make_array.html">ap_make_array</a>(p,&nbsp;4,&nbsp;sizeof(char&nbsp;*))</code> call).
+It cannot be used with other or more complex types of array elements;
+results are unpredictable, and a mmory fault is almost guaranteed if
+used with such.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_array_cat.html"><code>ap_array_cat</code></a>
+  Next: <a href="apidoc_ap_auth_name.html"><code>ap_auth_name</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_pstrcat.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_pstrcat.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_array_pstrcat.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_name.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_name.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_name.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_name.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,62 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_auth_name</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_auth_name</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+const char *ap_auth_name(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (ap_auth_name(r) == NULL) {
+    /* no applicable security realm */ 
+    } 
+    
+     </pre>
+    </dd>
+   </dl>
+<p>
+This routine returns the name of the realm in which the client
+must be authenticated and authorised for the request to be
+successfully served.  The string returned is the argument to
+the corresponding <code>AuthName</code> directive.
+</p>
+<p>
+If there is no applicable realm, <code>NULL</code> is returned.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_auth_type.html"><samp>ap_auth_type</samp></a>,
+        <a href="apidoc_ap_validate_password.html"><samp>ap_validate_password</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_array_pstrcat.html"><code>ap_array_pstrcat</code></a>
+  Next: <a href="apidoc_ap_auth_type.html"><code>ap_auth_type</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_name.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_name.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_name.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_type.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_type.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_type.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_type.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,58 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_auth_type</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_auth_type</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+const char *ap_auth_type(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (strcasecmp(ap_auth_type(r), "Basic") == 0) { 
+    /* AuthType Basic */ 
+} 
+     </pre>
+    </dd>
+   </dl>
+<p>
+This function returns the name of the HTTP authentication method
+that applies to the specified request.  The method is set by
+the <code>AuthType</code> directive.  If no authentication
+menthod is applicable, this routine returns <code>NULL</code>.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_auth_name.html"><samp>ap_auth_name</samp></a>,
+        <a href="apidoc_ap_validate_password.html"><samp>ap_validate_password</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_auth_name.html"><code>ap_auth_name</code></a>
+  Next: <a href="apidoc_ap_base64decode.html"><code>ap_base64decode</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_type.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_type.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_auth_type.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,51 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_base64decode</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_base64decode</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_base64decode(char *plain_dst, const char *coded_src);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+char *decoded;
+const char *bufcoded;
+int l;
+decoded = (char *) <a href="apidoc_ap_palloc.html">ap_palloc</a>(p, 1 + <a href="apidoc_ap_base64decode_len.html">ap_base64decode_len</a>(bufcoded));
+l = ap_base64decode(decoded, bufcoded);
+decoded[l] = '\0'; /* make binary sequence into string */
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_auth_type.html"><code>ap_auth_type</code></a>
+  Next: <a href="apidoc_ap_base64decode_binary.html"><code>ap_base64decode_binary</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_binary.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_binary.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_binary.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_binary.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,48 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_base64decode_binary</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_base64decode_binary</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_base64decode_binary(unsigned char *plain_dst, const char *coded_src);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+time_rec nonce_time;
+digest_header_rec *resp;
+ap_base64decode_binary(nonce_time.arr, resp-&gt;nonce);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_base64decode.html"><code>ap_base64decode</code></a>
+  Next: <a href="apidoc_ap_base64decode_len.html"><code>ap_base64decode_len</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_binary.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_binary.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_binary.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_len.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_len.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_len.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_len.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,48 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_base64decode_len</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_base64decode_len</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_base64decode_len(const char *coded_src);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+char *decoded;
+const char *bufcoded;
+decoded = (char *) <a href="apidoc_ap_palloc.html">ap_palloc</a>(p, 1 + ap_base64decode_len(bufcoded));
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_base64decode_binary.html"><code>ap_base64decode_binary</code></a>
+  Next: <a href="apidoc_ap_base64encode.html"><code>ap_base64encode</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_len.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_len.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64decode_len.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,49 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_base64encode</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_base64encode</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_base64encode(char *coded_dst, const char *plain_src, int len_plain_src);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int l;
+char *optarg;
+char *tmp;
+l = ap_base64encode(tmp, optarg, strlen(optarg));
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_base64decode_len.html"><code>ap_base64decode_len</code></a>
+  Next: <a href="apidoc_ap_base64encode_binary.html"><code>ap_base64encode_binary</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_binary.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_binary.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_binary.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_binary.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,49 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_base64encode_binary</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_base64encode_binary</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_base64encode_binary(char *coded_dst, const unsigned char *plain_src, int len_plain_src);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int l;
+char *out;
+unsigned char digest[16];
+l = ap_base64encode_binary(out, digest, sizeof(digest));
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_base64encode.html"><code>ap_base64encode</code></a>
+  Next: <a href="apidoc_ap_base64encode_len.html"><code>ap_base64encode_len</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_binary.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_binary.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_binary.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_len.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_len.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_len.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_len.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,51 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_base64encode_len</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_base64encode_len</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_base64encode_len(int len);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int needed;
+int l;
+char *string;
+needed = ap_base64encode_len(strlen(string));
+buffer = (char *) <a href="apidoc_ap_palloc.html">ap_palloc</a>(p, needed + 1);
+l = <a href="apidoc_ap_base64encode.html">ap_base64encode</a>(buffer, string, strlen(string));
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_base64encode_binary.html"><code>ap_base64encode_binary</code></a>
+  Next: <a href="apidoc_ap_basic_http_header.html"><code>ap_basic_http_header</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_len.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_len.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_base64encode_len.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_basic_http_header.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_basic_http_header.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_basic_http_header.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_basic_http_header.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,47 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_basic_http_header</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_basic_http_header</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_basic_http_header(<a href="apidoc_request_rec.html">request_rec</a> *r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_request_rec.html">request_rec</a> *r;
+ap_basic_http_header(r);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_base64encode_len.html"><code>ap_base64encode_len</code></a>
+  Next: <a href="apidoc_ap_bclose.html"><code>ap_bclose</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_basic_http_header.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_basic_http_header.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_basic_http_header.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bclose.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bclose.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bclose.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bclose.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,93 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_bclose</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bclose</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bclose(<a href="apidoc_BUFF.html">BUFF</a> *fb);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+status = ap_bclose(r-&gt;connection-&gt;client);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_bcreate.html"><samp>ap_bcreate</samp></a>,
+        <a href="apidoc_ap_bfilbuf.html"><samp>ap_bfilbuf</samp></a>,
+        <a href="apidoc_ap_bfileno.html"><samp>ap_bfileno</samp></a>,
+        <a href="apidoc_ap_bflsbuf.html"><samp>ap_bflsbuf</samp></a>,
+        <a href="apidoc_ap_bflush.html"><samp>ap_bflush</samp></a>,
+        <a href="apidoc_ap_bgetc.html"><samp>ap_bgetc</samp></a>,
+        <a href="apidoc_ap_bgetflag.html"><samp>ap_bgetflag</samp></a>,
+        <a href="apidoc_ap_bgetopt.html"><samp>ap_bgetopt</samp></a>,
+        <a href="apidoc_ap_bgets.html"><samp>ap_bgets</samp></a>,
+        <a href="apidoc_ap_bhalfduplex.html"><samp>ap_bhalfduplex</samp></a>,
+        <a href="apidoc_ap_blookc.html"><samp>ap_blookc</samp></a>,
+        <a href="apidoc_ap_bnonblock.html"><samp>ap_bnonblock</samp></a>,
+        <a href="apidoc_ap_bonerror.html"><samp>ap_bonerror</samp></a>,
+        <a href="apidoc_ap_bprintf.html"><samp>ap_bprintf</samp></a>,
+        <a href="apidoc_ap_bpushfd.html"><samp>ap_bpushfd</samp></a>,
+        <a href="apidoc_ap_bpushh.html"><samp>ap_bpushh</samp></a>,
+        <a href="apidoc_ap_bputc.html"><samp>ap_bputc</samp></a>,
+        <a href="apidoc_ap_bputs.html"><samp>ap_bputs</samp></a>,
+        <a href="apidoc_ap_bread.html"><samp>ap_bread</samp></a>,
+        <a href="apidoc_ap_bsetflag.html"><samp>ap_bsetflag</samp></a>,
+        <a href="apidoc_ap_bsetopt.html"><samp>ap_bsetopt</samp></a>,
+        <a href="apidoc_ap_bskiplf.html"><samp>ap_bskiplf</samp></a>,
+        <a href="apidoc_ap_bspawn_child.html"><samp>ap_bspawn_child</samp></a>,
+        <a href="apidoc_ap_bvputs.html"><samp>ap_bvputs</samp></a>,
+        <a href="apidoc_ap_bwrite.html"><samp>ap_bwrite</samp></a>,
+        <a href="apidoc_ap_vbprintf.html"><samp>ap_vbprintf</samp></a>,
+        <a href="apidoc_BO_BYTECT.html"><samp>BO_BYTECT</samp></a>,
+        <a href="apidoc_BUFF.html"><samp>BUFF</samp></a>,
+        <a href="apidoc_B_ASCII2EBCDIC.html"><samp>B_ASCII2EBCDIC</samp></a>,
+        <a href="apidoc_B_CHUNK.html"><samp>B_CHUNK</samp></a>,
+        <a href="apidoc_B_EBCDIC2ASCII.html"><samp>B_EBCDIC2ASCII</samp></a>,
+        <a href="apidoc_B_EOF.html"><samp>B_EOF</samp></a>,
+        <a href="apidoc_B_EOUT.html"><samp>B_EOUT</samp></a>,
+        <a href="apidoc_B_ERROR.html"><samp>B_ERROR</samp></a>,
+        <a href="apidoc_B_RD.html"><samp>B_RD</samp></a>,
+        <a href="apidoc_B_RDERR.html"><samp>B_RDERR</samp></a>,
+        <a href="apidoc_B_RDWR.html"><samp>B_RDWR</samp></a>,
+        <a href="apidoc_B_SAFEREAD.html"><samp>B_SAFEREAD</samp></a>,
+        <a href="apidoc_B_SFIO.html"><samp>B_SFIO</samp></a>,
+        <a href="apidoc_B_SOCKET.html"><samp>B_SOCKET</samp></a>,
+        <a href="apidoc_B_WR.html"><samp>B_WR</samp></a>,
+        <a href="apidoc_B_WRERR.html"><samp>B_WRERR</samp></a>,
+        <a href="apidoc_kill_conditions.html"><samp>kill_conditions</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_basic_http_header.html"><code>ap_basic_http_header</code></a>
+  Next: <a href="apidoc_ap_bcreate.html"><code>ap_bcreate</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bclose.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bclose.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bclose.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bcreate.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bcreate.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bcreate.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bcreate.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,93 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_bcreate</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bcreate</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_BUFF.html">BUFF</a> *ap_bcreate(<a href="apidoc_pool.html">pool</a> *p, int flags);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+c-&gt;fp = ap_bcreate(p, <a href="apidoc_B_RDWR.html">B_RDWR</a> &#124; <a href="apidoc_B_SOCKET.html">B_SOCKET</a>);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_bclose.html"><samp>ap_bclose</samp></a>,
+        <a href="apidoc_ap_bfilbuf.html"><samp>ap_bfilbuf</samp></a>,
+        <a href="apidoc_ap_bfileno.html"><samp>ap_bfileno</samp></a>,
+        <a href="apidoc_ap_bflsbuf.html"><samp>ap_bflsbuf</samp></a>,
+        <a href="apidoc_ap_bflush.html"><samp>ap_bflush</samp></a>,
+        <a href="apidoc_ap_bgetc.html"><samp>ap_bgetc</samp></a>,
+        <a href="apidoc_ap_bgetflag.html"><samp>ap_bgetflag</samp></a>,
+        <a href="apidoc_ap_bgetopt.html"><samp>ap_bgetopt</samp></a>,
+        <a href="apidoc_ap_bgets.html"><samp>ap_bgets</samp></a>,
+        <a href="apidoc_ap_bhalfduplex.html"><samp>ap_bhalfduplex</samp></a>,
+        <a href="apidoc_ap_blookc.html"><samp>ap_blookc</samp></a>,
+        <a href="apidoc_ap_bnonblock.html"><samp>ap_bnonblock</samp></a>,
+        <a href="apidoc_ap_bonerror.html"><samp>ap_bonerror</samp></a>,
+        <a href="apidoc_ap_bprintf.html"><samp>ap_bprintf</samp></a>,
+        <a href="apidoc_ap_bpushfd.html"><samp>ap_bpushfd</samp></a>,
+        <a href="apidoc_ap_bpushh.html"><samp>ap_bpushh</samp></a>,
+        <a href="apidoc_ap_bputc.html"><samp>ap_bputc</samp></a>,
+        <a href="apidoc_ap_bputs.html"><samp>ap_bputs</samp></a>,
+        <a href="apidoc_ap_bread.html"><samp>ap_bread</samp></a>,
+        <a href="apidoc_ap_bsetflag.html"><samp>ap_bsetflag</samp></a>,
+        <a href="apidoc_ap_bsetopt.html"><samp>ap_bsetopt</samp></a>,
+        <a href="apidoc_ap_bskiplf.html"><samp>ap_bskiplf</samp></a>,
+        <a href="apidoc_ap_bspawn_child.html"><samp>ap_bspawn_child</samp></a>,
+        <a href="apidoc_ap_bvputs.html"><samp>ap_bvputs</samp></a>,
+        <a href="apidoc_ap_bwrite.html"><samp>ap_bwrite</samp></a>,
+        <a href="apidoc_ap_vbprintf.html"><samp>ap_vbprintf</samp></a>,
+        <a href="apidoc_BO_BYTECT.html"><samp>BO_BYTECT</samp></a>,
+        <a href="apidoc_BUFF.html"><samp>BUFF</samp></a>,
+        <a href="apidoc_B_ASCII2EBCDIC.html"><samp>B_ASCII2EBCDIC</samp></a>,
+        <a href="apidoc_B_CHUNK.html"><samp>B_CHUNK</samp></a>,
+        <a href="apidoc_B_EBCDIC2ASCII.html"><samp>B_EBCDIC2ASCII</samp></a>,
+        <a href="apidoc_B_EOF.html"><samp>B_EOF</samp></a>,
+        <a href="apidoc_B_EOUT.html"><samp>B_EOUT</samp></a>,
+        <a href="apidoc_B_ERROR.html"><samp>B_ERROR</samp></a>,
+        <a href="apidoc_B_RD.html"><samp>B_RD</samp></a>,
+        <a href="apidoc_B_RDERR.html"><samp>B_RDERR</samp></a>,
+        <a href="apidoc_B_RDWR.html"><samp>B_RDWR</samp></a>,
+        <a href="apidoc_B_SAFEREAD.html"><samp>B_SAFEREAD</samp></a>,
+        <a href="apidoc_B_SFIO.html"><samp>B_SFIO</samp></a>,
+        <a href="apidoc_B_SOCKET.html"><samp>B_SOCKET</samp></a>,
+        <a href="apidoc_B_WR.html"><samp>B_WR</samp></a>,
+        <a href="apidoc_B_WRERR.html"><samp>B_WRERR</samp></a>,
+        <a href="apidoc_kill_conditions.html"><samp>kill_conditions</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bclose.html"><code>ap_bclose</code></a>
+  Next: <a href="apidoc_ap_bfilbuf.html"><code>ap_bfilbuf</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bcreate.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bcreate.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bcreate.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfilbuf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfilbuf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfilbuf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfilbuf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,53 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_bfilbuf</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bfilbuf</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bfilbuf(<a href="apidoc_BUFF.html">BUFF</a> *fb);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_SA-<a href="apidoc_BUFF.html">BUFF</a>.html">SA-<a href="apidoc_BUFF.html">BUFF</a></a>
+     </pre>
+    </dd>
+   </dl>
+<p>
+<code>ap_bfilbuf()</code> isn't called directly.
+Use the <code><a href="apidoc_ap_bgetc.html">ap_bgetc</a>()<code> (<i>q.v.</i>) macro instead.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_bgetc.html"><samp>ap_bgetc</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bcreate.html"><code>ap_bcreate</code></a>
+  Next: <a href="apidoc_ap_bfileno.html"><code>ap_bfileno</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfilbuf.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfilbuf.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfilbuf.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfileno.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfileno.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfileno.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfileno.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,93 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_bfileno</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bfileno</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bfileno(<a href="apidoc_BUFF.html">BUFF</a> *fb, int direction);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_ap_pclosef.html">ap_pclosef</a>(c-&gt;req-&gt;<a href="apidoc_pool.html">pool</a>, ap_bfileno(c-&gt;fp, <a href="apidoc_B_WR.html">B_WR</a>);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_bclose.html"><samp>ap_bclose</samp></a>,
+        <a href="apidoc_ap_bcreate.html"><samp>ap_bcreate</samp></a>,
+        <a href="apidoc_ap_bfilbuf.html"><samp>ap_bfilbuf</samp></a>,
+        <a href="apidoc_ap_bflsbuf.html"><samp>ap_bflsbuf</samp></a>,
+        <a href="apidoc_ap_bflush.html"><samp>ap_bflush</samp></a>,
+        <a href="apidoc_ap_bgetc.html"><samp>ap_bgetc</samp></a>,
+        <a href="apidoc_ap_bgetflag.html"><samp>ap_bgetflag</samp></a>,
+        <a href="apidoc_ap_bgetopt.html"><samp>ap_bgetopt</samp></a>,
+        <a href="apidoc_ap_bgets.html"><samp>ap_bgets</samp></a>,
+        <a href="apidoc_ap_bhalfduplex.html"><samp>ap_bhalfduplex</samp></a>,
+        <a href="apidoc_ap_blookc.html"><samp>ap_blookc</samp></a>,
+        <a href="apidoc_ap_bnonblock.html"><samp>ap_bnonblock</samp></a>,
+        <a href="apidoc_ap_bonerror.html"><samp>ap_bonerror</samp></a>,
+        <a href="apidoc_ap_bprintf.html"><samp>ap_bprintf</samp></a>,
+        <a href="apidoc_ap_bpushfd.html"><samp>ap_bpushfd</samp></a>,
+        <a href="apidoc_ap_bpushh.html"><samp>ap_bpushh</samp></a>,
+        <a href="apidoc_ap_bputc.html"><samp>ap_bputc</samp></a>,
+        <a href="apidoc_ap_bputs.html"><samp>ap_bputs</samp></a>,
+        <a href="apidoc_ap_bread.html"><samp>ap_bread</samp></a>,
+        <a href="apidoc_ap_bsetflag.html"><samp>ap_bsetflag</samp></a>,
+        <a href="apidoc_ap_bsetopt.html"><samp>ap_bsetopt</samp></a>,
+        <a href="apidoc_ap_bskiplf.html"><samp>ap_bskiplf</samp></a>,
+        <a href="apidoc_ap_bspawn_child.html"><samp>ap_bspawn_child</samp></a>,
+        <a href="apidoc_ap_bvputs.html"><samp>ap_bvputs</samp></a>,
+        <a href="apidoc_ap_bwrite.html"><samp>ap_bwrite</samp></a>,
+        <a href="apidoc_ap_vbprintf.html"><samp>ap_vbprintf</samp></a>,
+        <a href="apidoc_BO_BYTECT.html"><samp>BO_BYTECT</samp></a>,
+        <a href="apidoc_BUFF.html"><samp>BUFF</samp></a>,
+        <a href="apidoc_B_ASCII2EBCDIC.html"><samp>B_ASCII2EBCDIC</samp></a>,
+        <a href="apidoc_B_CHUNK.html"><samp>B_CHUNK</samp></a>,
+        <a href="apidoc_B_EBCDIC2ASCII.html"><samp>B_EBCDIC2ASCII</samp></a>,
+        <a href="apidoc_B_EOF.html"><samp>B_EOF</samp></a>,
+        <a href="apidoc_B_EOUT.html"><samp>B_EOUT</samp></a>,
+        <a href="apidoc_B_ERROR.html"><samp>B_ERROR</samp></a>,
+        <a href="apidoc_B_RD.html"><samp>B_RD</samp></a>,
+        <a href="apidoc_B_RDERR.html"><samp>B_RDERR</samp></a>,
+        <a href="apidoc_B_RDWR.html"><samp>B_RDWR</samp></a>,
+        <a href="apidoc_B_SAFEREAD.html"><samp>B_SAFEREAD</samp></a>,
+        <a href="apidoc_B_SFIO.html"><samp>B_SFIO</samp></a>,
+        <a href="apidoc_B_SOCKET.html"><samp>B_SOCKET</samp></a>,
+        <a href="apidoc_B_WR.html"><samp>B_WR</samp></a>,
+        <a href="apidoc_B_WRERR.html"><samp>B_WRERR</samp></a>,
+        <a href="apidoc_kill_conditions.html"><samp>kill_conditions</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bfilbuf.html"><code>ap_bfilbuf</code></a>
+  Next: <a href="apidoc_ap_bflsbuf.html"><code>ap_bflsbuf</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfileno.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfileno.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bfileno.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflsbuf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflsbuf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflsbuf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflsbuf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,93 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_bflsbuf</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bflsbuf</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bflsbuf(int c, <a href="apidoc_BUFF.html">BUFF</a> *fb);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<i>Not used directly, only through the <a href="apidoc_ap_bputc.html">ap_bputc</a>() macro.</i>
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_bclose.html"><samp>ap_bclose</samp></a>,
+        <a href="apidoc_ap_bcreate.html"><samp>ap_bcreate</samp></a>,
+        <a href="apidoc_ap_bfilbuf.html"><samp>ap_bfilbuf</samp></a>,
+        <a href="apidoc_ap_bfileno.html"><samp>ap_bfileno</samp></a>,
+        <a href="apidoc_ap_bflush.html"><samp>ap_bflush</samp></a>,
+        <a href="apidoc_ap_bgetc.html"><samp>ap_bgetc</samp></a>,
+        <a href="apidoc_ap_bgetflag.html"><samp>ap_bgetflag</samp></a>,
+        <a href="apidoc_ap_bgetopt.html"><samp>ap_bgetopt</samp></a>,
+        <a href="apidoc_ap_bgets.html"><samp>ap_bgets</samp></a>,
+        <a href="apidoc_ap_bhalfduplex.html"><samp>ap_bhalfduplex</samp></a>,
+        <a href="apidoc_ap_blookc.html"><samp>ap_blookc</samp></a>,
+        <a href="apidoc_ap_bnonblock.html"><samp>ap_bnonblock</samp></a>,
+        <a href="apidoc_ap_bonerror.html"><samp>ap_bonerror</samp></a>,
+        <a href="apidoc_ap_bprintf.html"><samp>ap_bprintf</samp></a>,
+        <a href="apidoc_ap_bpushfd.html"><samp>ap_bpushfd</samp></a>,
+        <a href="apidoc_ap_bpushh.html"><samp>ap_bpushh</samp></a>,
+        <a href="apidoc_ap_bputc.html"><samp>ap_bputc</samp></a>,
+        <a href="apidoc_ap_bputs.html"><samp>ap_bputs</samp></a>,
+        <a href="apidoc_ap_bread.html"><samp>ap_bread</samp></a>,
+        <a href="apidoc_ap_bsetflag.html"><samp>ap_bsetflag</samp></a>,
+        <a href="apidoc_ap_bsetopt.html"><samp>ap_bsetopt</samp></a>,
+        <a href="apidoc_ap_bskiplf.html"><samp>ap_bskiplf</samp></a>,
+        <a href="apidoc_ap_bspawn_child.html"><samp>ap_bspawn_child</samp></a>,
+        <a href="apidoc_ap_bvputs.html"><samp>ap_bvputs</samp></a>,
+        <a href="apidoc_ap_bwrite.html"><samp>ap_bwrite</samp></a>,
+        <a href="apidoc_ap_vbprintf.html"><samp>ap_vbprintf</samp></a>,
+        <a href="apidoc_BO_BYTECT.html"><samp>BO_BYTECT</samp></a>,
+        <a href="apidoc_BUFF.html"><samp>BUFF</samp></a>,
+        <a href="apidoc_B_ASCII2EBCDIC.html"><samp>B_ASCII2EBCDIC</samp></a>,
+        <a href="apidoc_B_CHUNK.html"><samp>B_CHUNK</samp></a>,
+        <a href="apidoc_B_EBCDIC2ASCII.html"><samp>B_EBCDIC2ASCII</samp></a>,
+        <a href="apidoc_B_EOF.html"><samp>B_EOF</samp></a>,
+        <a href="apidoc_B_EOUT.html"><samp>B_EOUT</samp></a>,
+        <a href="apidoc_B_ERROR.html"><samp>B_ERROR</samp></a>,
+        <a href="apidoc_B_RD.html"><samp>B_RD</samp></a>,
+        <a href="apidoc_B_RDERR.html"><samp>B_RDERR</samp></a>,
+        <a href="apidoc_B_RDWR.html"><samp>B_RDWR</samp></a>,
+        <a href="apidoc_B_SAFEREAD.html"><samp>B_SAFEREAD</samp></a>,
+        <a href="apidoc_B_SFIO.html"><samp>B_SFIO</samp></a>,
+        <a href="apidoc_B_SOCKET.html"><samp>B_SOCKET</samp></a>,
+        <a href="apidoc_B_WR.html"><samp>B_WR</samp></a>,
+        <a href="apidoc_B_WRERR.html"><samp>B_WRERR</samp></a>,
+        <a href="apidoc_kill_conditions.html"><samp>kill_conditions</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bfileno.html"><code>ap_bfileno</code></a>
+  Next: <a href="apidoc_ap_bflush.html"><code>ap_bflush</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflsbuf.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflsbuf.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflsbuf.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflush.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflush.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflush.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflush.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,95 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+  <title>Apache 1.3 API: ap_bflush</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bflush</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bflush(<a href="apidoc_BUFF.html">BUFF</a> *fb);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_BUFF.html">BUFF</a> *script_out;
+int rc;
+rc = ap_bflush(script_out);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_bclose.html"><samp>ap_bclose</samp></a>,
+        <a href="apidoc_ap_bcreate.html"><samp>ap_bcreate</samp></a>,
+        <a href="apidoc_ap_bfilbuf.html"><samp>ap_bfilbuf</samp></a>,
+        <a href="apidoc_ap_bfileno.html"><samp>ap_bfileno</samp></a>,
+        <a href="apidoc_ap_bflsbuf.html"><samp>ap_bflsbuf</samp></a>,
+        <a href="apidoc_ap_bgetc.html"><samp>ap_bgetc</samp></a>,
+        <a href="apidoc_ap_bgetflag.html"><samp>ap_bgetflag</samp></a>,
+        <a href="apidoc_ap_bgetopt.html"><samp>ap_bgetopt</samp></a>,
+        <a href="apidoc_ap_bgets.html"><samp>ap_bgets</samp></a>,
+        <a href="apidoc_ap_bhalfduplex.html"><samp>ap_bhalfduplex</samp></a>,
+        <a href="apidoc_ap_blookc.html"><samp>ap_blookc</samp></a>,
+        <a href="apidoc_ap_bnonblock.html"><samp>ap_bnonblock</samp></a>,
+        <a href="apidoc_ap_bonerror.html"><samp>ap_bonerror</samp></a>,
+        <a href="apidoc_ap_bprintf.html"><samp>ap_bprintf</samp></a>,
+        <a href="apidoc_ap_bpushfd.html"><samp>ap_bpushfd</samp></a>,
+        <a href="apidoc_ap_bpushh.html"><samp>ap_bpushh</samp></a>,
+        <a href="apidoc_ap_bputc.html"><samp>ap_bputc</samp></a>,
+        <a href="apidoc_ap_bputs.html"><samp>ap_bputs</samp></a>,
+        <a href="apidoc_ap_bread.html"><samp>ap_bread</samp></a>,
+        <a href="apidoc_ap_bsetflag.html"><samp>ap_bsetflag</samp></a>,
+        <a href="apidoc_ap_bsetopt.html"><samp>ap_bsetopt</samp></a>,
+        <a href="apidoc_ap_bskiplf.html"><samp>ap_bskiplf</samp></a>,
+        <a href="apidoc_ap_bspawn_child.html"><samp>ap_bspawn_child</samp></a>,
+        <a href="apidoc_ap_bvputs.html"><samp>ap_bvputs</samp></a>,
+        <a href="apidoc_ap_bwrite.html"><samp>ap_bwrite</samp></a>,
+        <a href="apidoc_ap_vbprintf.html"><samp>ap_vbprintf</samp></a>,
+        <a href="apidoc_BO_BYTECT.html"><samp>BO_BYTECT</samp></a>,
+        <a href="apidoc_BUFF.html"><samp>BUFF</samp></a>,
+        <a href="apidoc_B_ASCII2EBCDIC.html"><samp>B_ASCII2EBCDIC</samp></a>,
+        <a href="apidoc_B_CHUNK.html"><samp>B_CHUNK</samp></a>,
+        <a href="apidoc_B_EBCDIC2ASCII.html"><samp>B_EBCDIC2ASCII</samp></a>,
+        <a href="apidoc_B_EOF.html"><samp>B_EOF</samp></a>,
+        <a href="apidoc_B_EOUT.html"><samp>B_EOUT</samp></a>,
+        <a href="apidoc_B_ERROR.html"><samp>B_ERROR</samp></a>,
+        <a href="apidoc_B_RD.html"><samp>B_RD</samp></a>,
+        <a href="apidoc_B_RDERR.html"><samp>B_RDERR</samp></a>,
+        <a href="apidoc_B_RDWR.html"><samp>B_RDWR</samp></a>,
+        <a href="apidoc_B_SAFEREAD.html"><samp>B_SAFEREAD</samp></a>,
+        <a href="apidoc_B_SFIO.html"><samp>B_SFIO</samp></a>,
+        <a href="apidoc_B_SOCKET.html"><samp>B_SOCKET</samp></a>,
+        <a href="apidoc_B_WR.html"><samp>B_WR</samp></a>,
+        <a href="apidoc_B_WRERR.html"><samp>B_WRERR</samp></a>,
+        <a href="apidoc_kill_conditions.html"><samp>kill_conditions</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bflsbuf.html"><code>ap_bflsbuf</code></a>
+  Next: <a href="apidoc_ap_bgetc.html"><code>ap_bgetc</code></a>
+  </p>
+  <p>
+<a href="index.html"><code>Table of Contents</code></a>
+(<a href="index.html#Routines"><code>Routines</code></a>,
+<a href="index.html#Structures"><code>Structures</code></a>,
+<a href="index.html#Cells"><code>Data Cells</code></a>,
+<a href="index.html#Constants"><code>Constants</code></a>)
+  </p>
+ </body>
+</html>

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflush.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflush.html
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bflush.html
------------------------------------------------------------------------------
    svn:mime-type = text/html