summaryrefslogtreecommitdiffstats
path: root/modules/proxy/mod_proxy_fdpass.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* More movement to shared stuff...Jim Jagielski2011-01-131-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1058623 13f79535-47bb-0310-9956-ffa450edef68
* Use the new APLOG_USE_MODULE/AP_DECLARE_MODULE macros everywhere to takeStefan Fritsch2010-06-061-1/+1
| | | | | | | advantage of per-module loglevels git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@951895 13f79535-47bb-0310-9956-ffa450edef68
* Fix backward compatibility with APR versions less than 2.0 which don't haveBrian Havard2010-04-131-0/+11
| | | | | | | apr_socket_wait(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@933547 13f79535-47bb-0310-9956-ffa450edef68
* Remove usage of the APR private function apr_wait_for_io_or_timeout(),Brian Havard2010-04-121-4/+1
| | | | | | | replacing it with the newly added apr_socket_wait(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@933341 13f79535-47bb-0310-9956-ffa450edef68
* simple formatting line-wrap/no functional changesJim Jagielski2009-05-061-3/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@772192 13f79535-47bb-0310-9956-ffa450edef68
* Use canonical testingJim Jagielski2009-05-061-9/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@772190 13f79535-47bb-0310-9956-ffa450edef68
* Remove tabs. no functional changes.Paul Querna2009-01-081-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@732772 13f79535-47bb-0310-9956-ffa450edef68
* Add a declaration check for CMSG_DATA to mod_proxy_fdpass.Rainer Jung2009-01-021-4/+4
| | | | | | | | | | | | | | | | | Also move '#error' after the includes, because it seems CMSG_DATA is commonly defined in sys/socket.h. The check also overwrites _apmod_error_fatal in case CMSG_DATA is not defined to allow building when configure was called with "--enable-proxy". Otherwise one would need to explicitly disable mod_proxy_fdpass. We might want to remove the #error completely, because the new feature test prevents the building of the module when the symbol is not defined. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@730803 13f79535-47bb-0310-9956-ffa450edef68
* Use apr_cpystrn instead of strncpy since strncpy can create an unterminated ↵Takashi Sato2008-12-181-1/+1
| | | | | | string. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@727777 13f79535-47bb-0310-9956-ffa450edef68
* Add configuration of the Flush provider for mod_proxy_fdpass.Paul Querna2008-12-121-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@725946 13f79535-47bb-0310-9956-ffa450edef68
* Move the provider interface to a separate header file for mod_proxy_fdpass.Paul Querna2008-12-121-8/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@725943 13f79535-47bb-0310-9956-ffa450edef68
* Convert the flushing mechanism used before passing the socket to be based on ↵Paul Querna2008-12-121-15/+52
| | | | | | a provider, and include a default one using a flush. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@725942 13f79535-47bb-0310-9956-ffa450edef68
* Add a new mod_proxy_fdpass module to pass a client connection off to a ↵Paul Querna2008-12-121-0/+261
separate daemon. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@725940 13f79535-47bb-0310-9956-ffa450edef68