1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-09 15:21:02 +03:00
Commit Graph

6 Commits

Author SHA1 Message Date
Christophe Jaillet
f991ae076b Fix the use of the default 'flush' provider.
Improve documentation for the "flusher" parameter.
Remove useless empty lines.

See http://mail-archives.apache.org/mod_mbox/httpd-dev/200812.mbox/%3C494226C0.4050407@force-elite.com%3E for some more explanation.
A python script is given there to test.
I had to tweak it to have it work
(use:
        fd, payload = passfd.recvfd(conn.fileno())
instead of:
        fd = passfd.recvfd(conn.fileno())
)


This is a r1058621 regression, where somehow "char *flusher" has been turned into a "char flusher[]". So it is been broken since the beginning of 2.4.x

After this change (i.e. r1058621), 'flusher' is no more a pointer (NULL'ed when the structure it belongs to is created) but the address of an array within a structure. It can not be NULL anymore.
So, we now have to look at the content of the array itself to see if it has been initialized or if we have to use the default value instead.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1717063 13f79535-47bb-0310-9956-ffa450edef68
2015-11-29 13:26:03 +00:00
Jim Jagielski
69c1a5c854 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
2011-09-23 13:36:39 +00:00
Lucien Gentis
61c98c2ecc Some typos.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@770970 13f79535-47bb-0310-9956-ffa450edef68
2009-05-02 16:25:24 +00:00
William A. Rowe Jr
f8163f2f7a Adjust compatibility (unix specific) and description (this is
apparently not FastCGI - probably a cut n paste bug).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@740365 13f79535-47bb-0310-9956-ffa450edef68
2009-02-03 18:10:06 +00:00
Paul Querna
913345058c Fix xml errors.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@732781 13f79535-47bb-0310-9956-ffa450edef68
2009-01-08 18:29:42 +00:00
Paul Querna
e12c33d614 Add basic docs on mod_proxy_fdpass.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@732775 13f79535-47bb-0310-9956-ffa450edef68
2009-01-08 18:17:49 +00:00