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 [16/34] - /httpd/site/trunk/docs/dev/apidoc/

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetc.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetc.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetc.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetc.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,105 @@
+<!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_bgetc</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Macro ap_bgetc</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#ifndef CHARSET_EBCDIC
+#define ap_bgetc(fb) ( ((fb)-&gt;incnt == 0) ? <a href="apidoc_ap_bfilbuf.html">ap_bfilbuf</a>(fb) 
+                       : ((fb)-&gt;incnt--, *((fb)-&gt;inptr++)) ) 
+#else
+#define ap_bgetc(fb) ( ((fb)-&gt;incnt == 0) ? <a href="apidoc_ap_bfilbuf.html">ap_bfilbuf</a>(fb) \ 
+                       :  ((fb)-&gt;incnt--, \ 
+                           (fb-&gt;flags &amp; <a href="apidoc_B_ASCII2EBCDIC.html">B_ASCII2EBCDIC</a>) \ 
+                           ? os_toebcdic[(unsigned char)*((fb)-&gt;inptr++)] \ 
+                           : *((fb)-&gt;inptr++)) ) 
+#endif
+    
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if ((c = ap_bgetc(r-&gt;connection-&gt;client)) == <a href="apidoc_CR.html">CR</a>) { 
+    c = ap_bgetc(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_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_bflush.html"><samp>ap_bflush</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_bflush.html"><code>ap_bflush</code></a>
+  Next: <a href="apidoc_ap_bgetflag.html"><code>ap_bgetflag</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_bgetc.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetflag.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetflag.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetflag.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetflag.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_bgetflag</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Macro ap_bgetflag</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#define ap_bgetflag(fb, flag)  ((fb)-&gt;flags &amp; (flag))
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int convert = ap_bgetflag(r-&gt;connection-&gt;client, <a href="apidoc_B_EBCDIC2ASCII.html">B_EBCDIC2ASCII</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_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_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_bgetc.html"><code>ap_bgetc</code></a>
+  Next: <a href="apidoc_ap_bgetopt.html"><code>ap_bgetopt</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_bgetflag.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetopt.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetopt.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetopt.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgetopt.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,94 @@
+<!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_bgetopt</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bgetopt</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bgetopt(<a href="apidoc_BUFF.html">BUFF</a> *fb, int optname, void *optval);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+long int bs;
+ap_bgetoptr-&gt;connection-&gt;client, <a href="apidoc_BO_BYTECT.html">BO_BYTECT</a>, &amp;bs);
+     </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_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_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_bgetflag.html"><code>ap_bgetflag</code></a>
+  Next: <a href="apidoc_ap_bgets.html"><code>ap_bgets</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_bgetopt.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgets.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgets.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgets.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bgets.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_bgets</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bgets</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bgets(char *s, int n, <a href="apidoc_BUFF.html">BUFF</a> *fb);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+while ($(argsbuffer, <a href="apidoc_HUGE_STRING_LEN.html">HUGE_STRING_LEN</a>, script_err) &gt; 0) {
+    continue;
+}
+     </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_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_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_bgetopt.html"><code>ap_bgetopt</code></a>
+  Next: <a href="apidoc_ap_bhalfduplex.html"><code>ap_bhalfduplex</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_bgets.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bhalfduplex.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bhalfduplex.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bhalfduplex.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bhalfduplex.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,94 @@
+<!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_bhalfduplex</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bhalfduplex</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_bhalfduplex(<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> *fb;
+ap_bhalfduplex(fb);
+     </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_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_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_bgets.html"><code>ap_bgets</code></a>
+  Next: <a href="apidoc_ap_block_alarms.html"><code>ap_block_alarms</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_bhalfduplex.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_block_alarms.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_block_alarms.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_block_alarms.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_block_alarms.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,64 @@
+<!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_block_alarms</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_block_alarms</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_block_alarms(void);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_block_alarms();
+pid = fork();
+if (pid == 0) {
+    /* Do something as the child */
+}
+else {
+    /* Do something as the parent */
+}
+<a href="apidoc_ap_unblock_alarms.html">ap_unblock_alarms</a>();
+     </pre>
+    </dd>
+   </dl>
+<p>
+Blocks pending timeouts, protecting critical code sections.
+</p>
+<p>
+Calls to this function can be nested, but each call must have a corresponding
+call to unblock_alarms.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_unblock_alarms.html"><samp>ap_unblock_alarms</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bhalfduplex.html"><code>ap_bhalfduplex</code></a>
+  Next: <a href="apidoc_ap_blookc.html"><code>ap_blookc</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_block_alarms.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_blookc.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_blookc.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_blookc.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_blookc.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_blookc</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_blookc</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_blookc(char *buffer, <a href="apidoc_BUFF.html">BUFF</a> *fb);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+do {
+    /* something */
+} while (fold
+         &amp;&amp; (retval != 1)
+         &amp;&amp; (n &gt; 1)
+         &amp;&amp; (ap_blookc(&amp;next, in) == 1)
+         &amp;&amp; ((next == ' ')
+             &#124;&#124; (next == '\t')));
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_block_alarms.html"><code>ap_block_alarms</code></a>
+  Next: <a href="apidoc_ap_bnonblock.html"><code>ap_bnonblock</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_blookc.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bnonblock.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bnonblock.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bnonblock.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bnonblock.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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_bnonblock</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bnonblock</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bnonblock(<a href="apidoc_BUFF.html">BUFF</a> *fb, int direction);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_bnonblock(fb, <a href="apidoc_B_RD.html">B_RD</a>);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_blookc.html"><code>ap_blookc</code></a>
+  Next: <a href="apidoc_ap_bonerror.html"><code>ap_bonerror</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_bnonblock.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bonerror.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bonerror.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bonerror.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bonerror.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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_bonerror</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bonerror</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_bonerror(BUFF *fb, void (*error) (<a href="apidoc_BUFF.html">BUFF</a> *b, int, void *), void *data);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<i>No examples available; not currently used in Apache 1.3.</i>
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bnonblock.html"><code>ap_bnonblock</code></a>
+  Next: <a href="apidoc_ap_bprintf.html"><code>ap_bprintf</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_bonerror.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bprintf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bprintf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bprintf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bprintf.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,50 @@
+<!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_bprintf</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bprintf</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bprintf(<a href="apidoc_BUFF.html">BUFF</a> *fb, const char *fmt, ...);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<i>No examples available; not used in Apache 1.3.</i>
+     </pre>
+    </dd>
+   </dl>
+<p>
+Copies formatted data to a <a href="apidoc_BUFF.html">BUFF</a> structure.
+</p>
+<p>
+Returns 0 on success, -1 on failure.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bonerror.html"><code>ap_bonerror</code></a>
+  Next: <a href="apidoc_ap_bpushfd.html"><code>ap_bpushfd</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_bprintf.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bpushfd.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bpushfd.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bpushfd.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bpushfd.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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_bpushfd</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bpushfd</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+void ap_bpushfd(<a href="apidoc_BUFF.html">BUFF</a> *fb, int fd_in, int fd_out);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_bpushfd(datam csd, -1);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bprintf.html"><code>ap_bprintf</code></a>
+  Next: <a href="apidoc_ap_bpushh.html"><code>ap_bpushh</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_bpushfd.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bpushh.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bpushh.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bpushh.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bpushh.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_bpushh</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bpushh</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#include "buff.h"
+void ap_bpushh(<a href="apidoc_BUFF.html">BUFF</a> *fb, <a href="apidoc_HANDLE.html">HANDLE</a> hFH);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_bpushh(*pipe_in, hPipeInputWrite);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bpushfd.html"><code>ap_bpushfd</code></a>
+  Next: <a href="apidoc_ap_bputc.html"><code>ap_bputc</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_bpushh.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bputc.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bputc.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bputc.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bputc.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,104 @@
+<!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_bputc</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Macro ap_bputc</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+#ifndef CHARSET_EBCDIC
+#define ap_bputc(c, fb) ((((fb)-&gt;flags &amp; (<a href="apidoc_B_EOUT.html">B_EOUT</a>&#124;<a href="apidoc_B_WRERR.html">B_WRERR</a>&#124;B_WR)) != <a href="apidoc_B_WR.html">B_WR</a> &#124;&#124; \ 
+        (fb)-&gt;outcnt == (fb)-&gt;bufsiz) ? <a href="apidoc_ap_bflsbuf.html">ap_bflsbuf</a>(c, (fb)) : \ 
+        ((fb)-&gt;outbase[(fb)-&gt;outcnt++] = (c), 0))
+#else
+#define ap_bputc(c, fb) ((((fb)-&gt;flags &amp; (<a href="apidoc_B_EOUT.html">B_EOUT</a>&#124;<a href="apidoc_B_WRERR.html">B_WRERR</a>&#124;B_WR)) != <a href="apidoc_B_WR.html">B_WR</a> &#124;&#124; \ 
+        (fb)-&gt;outcnt == (fb)-&gt;bufsiz) ? <a href="apidoc_ap_bflsbuf.html">ap_bflsbuf</a>(c, (fb)) : \ 
+        ((fb)-&gt;outbase[(fb)-&gt;outcnt++] = (fb-&gt;flags &amp; <a href="apidoc_B_EBCDIC2ASCII.html">B_EBCDIC2ASCII</a>) \ 
+            ? os_toascii[(unsigned char)c] : (c), 0)) 
+#endif
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (ap_bputc(c, r-&gt;connection-&gt;client) &lt; 0) {
+    /* Do something */
+}
+     </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_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_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_bpushh.html"><code>ap_bpushh</code></a>
+  Next: <a href="apidoc_ap_bputs.html"><code>ap_bputs</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_bputc.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bputs.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bputs.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bputs.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bputs.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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_bputs</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bputs</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bputs(const char *x, <a href="apidoc_BUFF.html">BUFF</a> *fb);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_bputs(<a href="apidoc_CRLF.html">CRLF</a>, fp);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bputc.html"><code>ap_bputc</code></a>
+  Next: <a href="apidoc_ap_bread.html"><code>ap_bread</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_bputs.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bread.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bread.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bread.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bread.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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_bread</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bread</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bread(<a href="apidoc_BUFF.html">BUFF</a> *fb, void *buf, int nbyte);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+n = ap_bread(f, buf, IOBUFSIZE);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bputs.html"><code>ap_bputs</code></a>
+  Next: <a href="apidoc_ap_bsetflag.html"><code>ap_bsetflag</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_bread.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bsetflag.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bsetflag.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bsetflag.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bsetflag.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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_bsetflag</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bsetflag</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bsetflag(<a href="apidoc_BUFF.html">BUFF</a> *fb, int flag, int value);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_bsetflag(r-&gt;connection-&gt;client, <a href="apidoc_B_ASCII2EBCDIC.html">B_ASCII2EBCDIC</a>, 0);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bread.html"><code>ap_bread</code></a>
+  Next: <a href="apidoc_ap_bsetopt.html"><code>ap_bsetopt</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_bsetflag.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bsetopt.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bsetopt.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bsetopt.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bsetopt.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,46 @@
+<!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_bsetopt</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bsetopt</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bsetopt(<a href="apidoc_BUFF.html">BUFF</a> *fb, int optname, const void *optval);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_bsetopt(r-&gt;connection-&gt;client, <a href="apidoc_BO_BYTECT.html">BO_BYTECT</a>, &amp;zero);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bsetflag.html"><code>ap_bsetflag</code></a>
+  Next: <a href="apidoc_ap_bskiplf.html"><code>ap_bskiplf</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_bsetopt.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bskiplf.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bskiplf.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bskiplf.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bskiplf.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_bskiplf</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bskiplf</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bskiplf(<a href="apidoc_BUFF.html">BUFF</a> *fb);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (linebuff[len - 1] != '\n') {
+    (void)ap_bskiplf(f);
+}
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bsetopt.html"><code>ap_bsetopt</code></a>
+  Next: <a href="apidoc_ap_bspawn_child.html"><code>ap_bspawn_child</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_bskiplf.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bspawn_child.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bspawn_child.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bspawn_child.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bspawn_child.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,98 @@
+<!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_bspawn_child</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bspawn_child</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bspawn_child(<a href="apidoc_pool.html">pool</a> *p, int (*func) (void *data, <a href="apidoc_child_info.html">child_info</a> *info), 
+                    void *data, enum <a href="apidoc_kill_conditions.html">kill_conditions</a> kill_how, 
+                    BUFF **pipe_in, BUFF **pipe_out, <a href="apidoc_BUFF.html">BUFF</a> **pipe_err);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (! ap_bspawn_child(r-&gt;<a href="apidoc_pool.html">pool</a>, include_cmd_child, &amp;arg,
+                      kill_after_timeout, NULL, &amp;script_in, NULL)) {
+    /* Log an error */
+}
+     </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_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_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_bskiplf.html"><code>ap_bskiplf</code></a>
+  Next: <a href="apidoc_ap_bvputs.html"><code>ap_bvputs</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_bspawn_child.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bvputs.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bvputs.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bvputs.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bvputs.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,50 @@
+<!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_bvputs</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bvputs</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bvputs(<a href="apidoc_BUFF.html">BUFF</a> *fb, ...);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (parm-&gt;cache != NULL
+    &amp;&amp;parm-&gt;cache-&gt; != NULL
+    &amp;&amp;ap_bvputs(parm-&gt;cache-&gt;fp, key, ": ", value, <a href="apidoc_CRLF.html">CRLF</a>, NULL) == -1) {
+    /* Log an error */
+}
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bspawn_child.html"><code>ap_bspawn_child</code></a>
+  Next: <a href="apidoc_ap_bwrite.html"><code>ap_bwrite</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_bvputs.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bwrite.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bwrite.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bwrite.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bwrite.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_bwrite</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bwrite</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_bwrite(<a href="apidoc_BUFF.html">BUFF</a> *fb, const void *buf, int nbyte);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<a href="apidoc_ap_reset_timeout.html">ap_reset_timeout</a>(r);
+if (ap_bwrite(script_out, argsbuffer, len_read) &lt; len_read) {
+    / * silly script stopped reading, soak up remaining message */
+}
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   No documentation available.
+   </p>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bvputs.html"><code>ap_bvputs</code></a>
+  Next: <a href="apidoc_ap_bytes_in_free_blocks.html"><code>ap_bytes_in_free_blocks</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_bwrite.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bytes_in_free_blocks.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bytes_in_free_blocks.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bytes_in_free_blocks.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bytes_in_free_blocks.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,78 @@
+<!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_bytes_in_free_blocks</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bytes_in_free_blocks</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+long ap_bytes_in_free_blocks(void);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<i>No examples available; not used in Apache 1.3.</i>
+     </pre>
+    </dd>
+   </dl>
+<p>
+Returns the number of bytes in free blocks for all pools.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_bytes_in_pool.html"><samp>ap_bytes_in_pool</samp></a>,
+        <a href="apidoc_ap_clear_pool.html"><samp>ap_clear_pool</samp></a>,
+        <a href="apidoc_ap_destroy_pool.html"><samp>ap_destroy_pool</samp></a>,
+        <a href="apidoc_ap_find_pool.html"><samp>ap_find_pool</samp></a>,
+        <a href="apidoc_ap_make_sub_pool.html"><samp>ap_make_sub_pool</samp></a>,
+        <a href="apidoc_ap_palloc.html"><samp>ap_palloc</samp></a>,
+        <a href="apidoc_ap_pcalloc.html"><samp>ap_pcalloc</samp></a>,
+        <a href="apidoc_ap_pclosedir.html"><samp>ap_pclosedir</samp></a>,
+        <a href="apidoc_ap_pclosef.html"><samp>ap_pclosef</samp></a>,
+        <a href="apidoc_ap_pclosesocket.html"><samp>ap_pclosesocket</samp></a>,
+        <a href="apidoc_ap_pduphostent.html"><samp>ap_pduphostent</samp></a>,
+        <a href="apidoc_ap_pfclose.html"><samp>ap_pfclose</samp></a>,
+        <a href="apidoc_ap_pfdopen.html"><samp>ap_pfdopen</samp></a>,
+        <a href="apidoc_ap_pfopen.html"><samp>ap_pfopen</samp></a>,
+        <a href="apidoc_ap_pgethostbyname.html"><samp>ap_pgethostbyname</samp></a>,
+        <a href="apidoc_ap_pool.html"><samp>ap_pool</samp></a>,
+        <a href="apidoc_ap_pool_is_ancestor.html"><samp>ap_pool_is_ancestor</samp></a>,
+        <a href="apidoc_ap_pool_join.html"><samp>ap_pool_join</samp></a>,
+        <a href="apidoc_ap_popendir.html"><samp>ap_popendir</samp></a>,
+        <a href="apidoc_ap_popenf.html"><samp>ap_popenf</samp></a>,
+        <a href="apidoc_ap_pregcomp.html"><samp>ap_pregcomp</samp></a>,
+        <a href="apidoc_ap_pregfree.html"><samp>ap_pregfree</samp></a>,
+        <a href="apidoc_ap_psocket.html"><samp>ap_psocket</samp></a>,
+        <a href="apidoc_ap_pstrcat.html"><samp>ap_pstrcat</samp></a>,
+        <a href="apidoc_ap_pstrdup.html"><samp>ap_pstrdup</samp></a>,
+        <a href="apidoc_ap_pstrndup.html"><samp>ap_pstrndup</samp></a>,
+        <a href="apidoc_pool.html"><samp>pool</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bwrite.html"><code>ap_bwrite</code></a>
+  Next: <a href="apidoc_ap_bytes_in_pool.html"><code>ap_bytes_in_pool</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_bytes_in_free_blocks.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bytes_in_pool.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bytes_in_pool.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bytes_in_pool.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_bytes_in_pool.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,79 @@
+<!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_bytes_in_pool</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_bytes_in_pool</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+long ap_bytes_in_pool(<a href="apidoc_pool.html">pool</a> *p);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<i>No examples available; not used in Apache 1.3.</i>
+     </pre>
+    </dd>
+   </dl>
+<p>
+Returns the number of bytes allocated for <EM>p</EM>.
+</p>
+<p>
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_clear_pool.html"><samp>ap_clear_pool</samp></a>,
+        <a href="apidoc_ap_destroy_pool.html"><samp>ap_destroy_pool</samp></a>,
+        <a href="apidoc_ap_find_pool.html"><samp>ap_find_pool</samp></a>,
+        <a href="apidoc_ap_make_sub_pool.html"><samp>ap_make_sub_pool</samp></a>,
+        <a href="apidoc_ap_palloc.html"><samp>ap_palloc</samp></a>,
+        <a href="apidoc_ap_pcalloc.html"><samp>ap_pcalloc</samp></a>,
+        <a href="apidoc_ap_pclosedir.html"><samp>ap_pclosedir</samp></a>,
+        <a href="apidoc_ap_pclosef.html"><samp>ap_pclosef</samp></a>,
+        <a href="apidoc_ap_pclosesocket.html"><samp>ap_pclosesocket</samp></a>,
+        <a href="apidoc_ap_pduphostent.html"><samp>ap_pduphostent</samp></a>,
+        <a href="apidoc_ap_pfclose.html"><samp>ap_pfclose</samp></a>,
+        <a href="apidoc_ap_pfdopen.html"><samp>ap_pfdopen</samp></a>,
+        <a href="apidoc_ap_pfopen.html"><samp>ap_pfopen</samp></a>,
+        <a href="apidoc_ap_pgethostbyname.html"><samp>ap_pgethostbyname</samp></a>,
+        <a href="apidoc_ap_pool.html"><samp>ap_pool</samp></a>,
+        <a href="apidoc_ap_pool_is_ancestor.html"><samp>ap_pool_is_ancestor</samp></a>,
+        <a href="apidoc_ap_pool_join.html"><samp>ap_pool_join</samp></a>,
+        <a href="apidoc_ap_popendir.html"><samp>ap_popendir</samp></a>,
+        <a href="apidoc_ap_popenf.html"><samp>ap_popenf</samp></a>,
+        <a href="apidoc_ap_pregcomp.html"><samp>ap_pregcomp</samp></a>,
+        <a href="apidoc_ap_pregfree.html"><samp>ap_pregfree</samp></a>,
+        <a href="apidoc_ap_psocket.html"><samp>ap_psocket</samp></a>,
+        <a href="apidoc_ap_pstrcat.html"><samp>ap_pstrcat</samp></a>,
+        <a href="apidoc_ap_pstrdup.html"><samp>ap_pstrdup</samp></a>,
+        <a href="apidoc_ap_pstrndup.html"><samp>ap_pstrndup</samp></a>,
+        <a href="apidoc_pool.html"><samp>pool</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bytes_in_free_blocks.html"><code>ap_bytes_in_free_blocks</code></a>
+  Next: <a href="apidoc_ap_call_exec.html"><code>ap_call_exec</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_bytes_in_pool.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_call_exec.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_call_exec.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_call_exec.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_call_exec.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,55 @@
+<!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_call_exec</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_call_exec</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_call_exec(<a href="apidoc_request_rec.html">request_rec</a> *r, char *argv0, char **env, int shellcmd);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+child_pid = ap_call_exec(r, pinfo, argv0, env, 0);
+     </pre>
+    </dd>
+   </dl>
+<p>
+Calls exec() or the setuid wrapper, if setuid wrappers are enabled, to run
+<EM>argv0</EM>. <EM>env</EM> is a NULL-terminated array of strings to use as
+the program's environment, and <EM>shellcmd</EM> is a boolean indicating
+whether a shell should be spawned to run the command. If <EM>r-&gt;args</EM>
+is set and doesn't contain "=", it is passed to <EM>argv0</EM> as command
+line arguments.
+</p>
+<p>
+Never returns.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_bytes_in_pool.html"><code>ap_bytes_in_pool</code></a>
+  Next: <a href="apidoc_ap_can_exec.html"><code>ap_can_exec</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_call_exec.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_can_exec.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_can_exec.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_can_exec.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_can_exec.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_can_exec</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_can_exec</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_can_exec(const struct stat *fstat);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+if (! ap_can_exec(&amp;r-&gt;finfo)) {
+    /* log an error; we can't execute the file */
+}
+     </pre>
+    </dd>
+   </dl>
+<p>
+Returns nonzero if the file <EM>fstat</EM> can be executed, 0 if it cannot.
+</p>
+
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_call_exec.html"><code>ap_call_exec</code></a>
+  Next: <a href="apidoc_ap_cfg_closefile.html"><code>ap_cfg_closefile</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_can_exec.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_closefile.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_closefile.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_closefile.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_closefile.html [utf-8] Sat Oct  3 16:20:11 2009
@@ -0,0 +1,56 @@
+<!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_cfg_closefile</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_cfg_closefile</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_cfg_closefile(<a href="apidoc_configfile_t.html">configfile_t</a> *fp);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+ap_cfg_closefile(imap);  /* we are done with the map file; close it */
+     </pre>
+    </dd>
+   </dl>
+<p>
+Closes <EM>fp</EM>.
+</p>
+<p>
+Returns 0 on success, -1 on error.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_cfg_getc.html"><samp>ap_cfg_getc</samp></a>,
+        <a href="apidoc_ap_cfg_getline.html"><samp>ap_cfg_getline</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_can_exec.html"><code>ap_can_exec</code></a>
+  Next: <a href="apidoc_ap_cfg_getc.html"><code>ap_cfg_getc</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_cfg_closefile.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_getc.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_getc.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_getc.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_getc.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_cfg_getc</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_cfg_getc</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_cfg_getc(<a href="apidoc_configfile_t.html">configfile_t</a> *cfp);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+<i>No examples available; not used in Apache 1.3.</i>
+     </pre>
+    </dd>
+   </dl>
+<p>
+Read one character from a <a href="apidoc_configfile_t.html">configfile_t</a>. Increments <EM>cfp-&gt;line_number</EM>
+if a newline is encountered.
+</p>
+<p>
+Returns the character found.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_cfg_closefile.html"><samp>ap_cfg_closefile</samp></a>,
+        <a href="apidoc_ap_cfg_getline.html"><samp>ap_cfg_getline</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_cfg_closefile.html"><code>ap_cfg_closefile</code></a>
+  Next: <a href="apidoc_ap_cfg_getline.html"><code>ap_cfg_getline</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_cfg_getc.html
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_getline.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_getline.html?rev=821352&view=auto
==============================================================================
--- httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_getline.html (added)
+++ httpd/site/trunk/docs/dev/apidoc/apidoc_ap_cfg_getline.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_cfg_getline</title>
+ </head>
+ <body>
+  <h1>Apache 1.3 API Documentation</h1>
+  <h3>Routine ap_cfg_getline</h3>
+   <p>
+   Definition:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+int ap_cfg_getline(char *buf, size_t bufsize, <a href="apidoc_configfile_t.html">configfile_t</a> *cfp);
+     </pre>
+    </dd>
+   </dl>
+   <p>
+   Usage example:
+   </p>
+   <dl>
+    <dd>
+     <pre>
+while (! ap_cfg_getline(l, <a href="apidoc_MAX_STRING_LEN.html">MAX_STRING_LEN</a>, cmd-&gt;config_file)) {
+    /* Do something with the line read into l */
+}
+     </pre>
+    </dd>
+   </dl>
+<p>
+Reads a line from a file, stripping whitespace. Reads up to <EM>bufsize</EM>
+characters from <EM>cfp</EM> into <EM>buf</EM>, converting any whitespace
+encountered to single spaces.
+</p>
+<p>
+Returns 0 on success, 1 if EOF encountered.
+</p>
+
+   <dl compact>
+    <dt><i>See also:</i></dt>
+    <dd><a href="apidoc_ap_cfg_closefile.html"><samp>ap_cfg_closefile</samp></a>,
+        <a href="apidoc_ap_cfg_getc.html"><samp>ap_cfg_getc</samp></a>
+    </dd>
+   </dl>
+  <hr>
+  <p>
+  Previous: <a href="apidoc_ap_cfg_getc.html"><code>ap_cfg_getc</code></a>
+  Next: <a href="apidoc_ap_chdir_file.html"><code>ap_chdir_file</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>