- Nov 14, 2007
-
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@594892 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@594888 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
move the xml doc for KeptBodySize to its rightful, alphabetical location (the transformed version was already alphabetized) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@594855 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
that the connection is not persistent if the MPM process handling the request is already exiting when the response header is built. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@594839 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 13, 2007
-
-
Jim Jagielski authored
to use providers in sub-mods to extend lbmethods in mod_proxy... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@594659 13f79535-47bb-0310-9956-ffa450edef68
-
Sander Temme authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@594607 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
still use most... yeah, this means you need to explicitly add mod_serf... no, this isn't a comment on how cool mod_serf is :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@594586 13f79535-47bb-0310-9956-ffa450edef68
-
Paul Querna authored
To enable, pass something like this to configure: --enable-serf --with-serf=/usr/local/serf/0.1.2 To try it out, put something like this in your httpd.conf: <Location /> SerfPass http://httpd.apache.org/ </Location> LocationMatch and all related directives can also be used, magical eh? [1] - http://code.google.com/p/serf/ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@594425 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 11, 2007
-
-
http://svn.apache.org/viewvc?rev=591499&view=revEric Covener authored
char ***retvals when AuthLDAPUrl has extra attributes specified git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@593919 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
when modules and scripts may be harmed by transformation of the request body. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@593890 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 10, 2007
-
-
Ruediger Pluem authored
PR: 43649 Submitted by: Jose Kahan <jose w3.org> Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@593816 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 08, 2007
-
-
Eric Covener authored
connection list, it is fully disconnected before it's put back. My previous commentary did more harm then good. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@593283 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
mod_charset_lite: Don't crash when the request has no associated filename. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@593177 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 07, 2007
-
-
Graham Leggett authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@592953 13f79535-47bb-0310-9956-ffa450edef68
-
Graham Leggett authored
size that would otherwise be discarded, to be consumed by filters such as mod_include. When enabled for a directory, POST requests to shtml files can be passed through to embedded scripts as POST requests, rather being downgraded to GET requests. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@592951 13f79535-47bb-0310-9956-ffa450edef68
-
Eric Covener authored
never called because it's registered against pconf in the child. LDAP connections are created in the child and not shared between children, so no action should be required at child exit Additionally, clarify comments around uldap_connection_cleanup() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@592764 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
filename. (r->filename unset) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@592694 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 06, 2007
-
-
Joe Orton authored
ssl_io_filter_connect since the function performs a handshake in either client or server mode, not a "connect". No functional change. (both callers updated) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@592552 13f79535-47bb-0310-9956-ffa450edef68
-
Joe Orton authored
for a subrequest. When it *is* sent, list it in a Connection: header as required by 2616. PR: 32486 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@592457 13f79535-47bb-0310-9956-ffa450edef68
-
Joe Orton authored
in the post_read_request hook rather than in a filter, and fix the filter insertion issue: * modules/ssl/ssl_engine_kernel.c (upgrade_connection): New function, mostly moved from ssl_io_filter_Upgrade. (ssl_hook_ReadReq): Call upgrade_connection to upgrade to TLS if required. * modules/ssl/ssl_engine_io.c (ssl_io_filter_Upgrade): Remove function. (ssl_io_input_add_filter, ssl_io_filter_init): Take a request_rec pointer and pass to ap_add_*_filter to ensure the filter chain is modified correctly; remove it from the filter afterwards. (ssl_io_filter_register): Drop UPGRADE_FILTER registration. * modules/ssl/mod_ssl.c (ssl_init_ssl_connection): Take a request_rec pointer, pass to ssl_io_filter_init. (ssl_hook_pre_connection): Pass NULL request_rec pointer to above. (ssl_hook_Insert_Filter): Remove function. (ssl_register_hooks): Drop insert_filter hook. * modules/ssl/ssl_private.h: Update prototypes. PR: 41231 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@592446 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 05, 2007
-
-
Joe Orton authored
reference to the "SSL logfile". git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@591956 13f79535-47bb-0310-9956-ffa450edef68
-
Joe Orton authored
in place of ap_log_error throughout. (ssl_callback_SSLVerify): Use ap_log_cerror in place of ap_log_error throughout. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@591955 13f79535-47bb-0310-9956-ffa450edef68
-
Ruediger Pluem authored
ap_time_process_request() is now part of the public scoreboard API. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@591923 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 04, 2007
-
-
Ruediger Pluem authored
PR: 43789 Submitted by: Tom Donovan <Tom.Donovan acm.org> Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@591760 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 02, 2007
-
-
Eric Covener authored
spurious 401s with message "DN has not been defined" when cache expiration happens in another thread PR 43786 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@591499 13f79535-47bb-0310-9956-ffa450edef68
-
Eric Covener authored
could be used during request processing (the apr_ldap_foo only need a pool for temporary data anyway) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@591488 13f79535-47bb-0310-9956-ffa450edef68
-
Joe Orton authored
renegotiation when an internal redirect occurs: * modules/ssl/ssl_engine_io.c (ssl_io_buffer_fill): Remove protocol-level filters before inserting the buffering filter. (ssl_io_filter_buffer): Return an EOS if invoked with an empty brigade; do not remove the filter after exhausting the buffer. (ssl_io_filter_buffer): Increase the type of the buffer filter to be AP_FTYPE_PROTOCOL. PR: 43738 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@591393 13f79535-47bb-0310-9956-ffa450edef68
-
Joe Orton authored
argument; determine library version strings once at startup. (ssl_var_lookup_ssl_version): Drop 'pp' argument; use new global variables rather than modifying process-global state in a function which must be thread-safe. (all callers changed) * modules/ssl/mod_ssl.c (ssl_register_hooks): Pass pool to ssl_var_register. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@591384 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Stevenson authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@591370 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 01, 2007
-
-
Jean-Frederic Clere authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@591021 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 31, 2007
-
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@590646 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
of only storing 63 bytes of the request, when the requests are longer than that and only vary towards the end; eg: GET /disk1/storage/apache/htdocs/images/image-store1/food/fruits/seeded/apples.jpg GET /disk1/storage/apache/htdocs/images/image-store1/food/fruits/seeded/pears.jpg GET /disk1/storage/apache/htdocs/images/image-store1/food/fruits/seeded/plums.jpg git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@590641 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 30, 2007
-
-
Bradley Nicholes authored
The function ap_time_process_request() needs to be declared appropriately if it is going to be used externally (now being called by mod_echo) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@590122 13f79535-47bb-0310-9956-ffa450edef68
-
Jean-Frederic Clere authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@590038 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 29, 2007
-
-
Martin Kraemer authored
are closed. "Some platforms" drop out of the accept() with an EBADF after the sockets have been closed. Such an error should not clutter the logs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@589761 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@589619 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@589461 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 28, 2007
-
-
Nick Kew authored
ProxyPass/Reverse/etc directives: r421686, r422178, r421686, r421725 That patch stalled on wrowe's veto. This update introduces a new "interpolate" keyword to all directives affected, so should meet his concerns by adding explicit per-directive control (disabled by default). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@589371 13f79535-47bb-0310-9956-ffa450edef68
-
Nick Kew authored
Ref. http://www.mail-archive.com/dev@httpd.apache.org/msg38532.html git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@589343 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 27, 2007
-
-
Nick Kew authored
PR#39722 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@589177 13f79535-47bb-0310-9956-ffa450edef68
-