summaryrefslogtreecommitdiff
path: root/docs/manual/mod/mod_proxy_fdpass.xml
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2011-09-23 13:36:39 +0000
committerJim Jagielski <jim@apache.org>2011-09-23 13:36:39 +0000
commit69c1a5c854b89a80cf5ca08b7b38d9f0a88c2667 (patch)
tree304a1e7196cfcd252ab9ce7c54b2de985e319a17 /docs/manual/mod/mod_proxy_fdpass.xml
parentecba518d3c356f32ee6fa15bf272990789f3ebbd (diff)
downloadhttpd-69c1a5c854b89a80cf5ca08b7b38d9f0a88c2667.tar.gz
Cleanup effort in prep for GA push:
Trim trailing whitespace... no func change git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1174747 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_proxy_fdpass.xml')
-rw-r--r--docs/manual/mod/mod_proxy_fdpass.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/manual/mod/mod_proxy_fdpass.xml b/docs/manual/mod/mod_proxy_fdpass.xml
index cad8cfc769..5d61836d79 100644
--- a/docs/manual/mod/mod_proxy_fdpass.xml
+++ b/docs/manual/mod/mod_proxy_fdpass.xml
@@ -35,19 +35,19 @@
>mod_proxy</module>. It provides support for the passing the socket of the
client to another process.</p>
- <p><code>mod_proxy_fdpass</code> uses the ability of AF_UNIX domain
- sockets to <a href="http://www.freebsd.org/cgi/man.cgi?query=recv">pass an
+ <p><code>mod_proxy_fdpass</code> uses the ability of AF_UNIX domain
+ sockets to <a href="http://www.freebsd.org/cgi/man.cgi?query=recv">pass an
open file descriptor</a> to allow another process to finish handling a request.
</p>
- <p>The module has a <code>proxy_fdpass_flusher</code> provider interface,
+ <p>The module has a <code>proxy_fdpass_flusher</code> provider interface,
which allows another module to optionally send the response headers, or even
the start of the response body. The default flush provider disables keep-alive,
and sends the response headers, letting the external process just send a
response body.</p>
- <p>At this time the only data passed to the external process is the client
- socket. To receive a client socket, call recvfrom with an allocated
+ <p>At this time the only data passed to the external process is the client
+ socket. To receive a client socket, call recvfrom with an allocated
<a href="http://www.kernel.org/doc/man-pages/online/pages/man3/cmsg.3.html"
><code>struct cmsghdr</code></a>. Future versions of this module may include
more data after the client socket, but this is not implemented at this time.