- Jul 21, 2003
-
-
Andre Malo authored
PR: 21743 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100722 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100721 13f79535-47bb-0310-9956-ffa450edef68
-
Joe Orton authored
* modules/ssl/ssl_engine_kernel.c (ssl_hook_Access): Set aborted flag after renegotiation failure. * modules/ssl/ssl_engine_io.c (ssl_filter_write, ssl_io_filter_output): Don't dereference BIOs in filter_ctx when filter_ctx->pssl is NULL. (ssl_filter_io_shutdown): Set aborted flag on abortive shutdown. PR: 21370 Submitted by: Hartmut Keil <Hartmut.Keil@adnovum.ch> Cleaned up by: Jeff Trawick, Joe Orton git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100720 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
Acked by: Cliff Woolley git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100718 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 18, 2003
-
-
Joshua Slive authored
of the var/ issue. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100692 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
of baking our own. The core function is much better maintained and probably more safe. Additionally this removes just another fixed buffer :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100681 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 17, 2003
-
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100680 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100676 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
+ give it a better interface + get a rid of most of the fixed stack buffers and then + no longer limit rewritten uris, expanded variables etc to 2k + make it better readable and understandable at all. This is a two-tiered commit for better diffs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100675 13f79535-47bb-0310-9956-ffa450edef68
-
Joe Orton authored
* util_md5.c (ap_md5digest): Use a larger buffer; ensure size is a multiple of 64 to prevent buffering in MD5 code. Remove redundant 'length' variable. Reset read size in case of short reads. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100672 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 16, 2003
-
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100657 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
config. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100654 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
readability. No code changes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100652 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
obviously a static value. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100651 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
- add comment about what subst_prefix_path function does - reduce the use of fixed buffers - get a rid of unnecessary memory operations git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100650 13f79535-47bb-0310-9956-ffa450edef68
-
Paul J. Reder authored
Just fixing some improperly formatted entries. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100649 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
function calls, provides type safety for the ap_filter_t*, and clarifies what is really going on (i.e. we aren't sending a FLUSH bucket of any kind). * mod_dav.c (dav_send_multistatus, dav_method_propfind): change the ap_filter_flush call to ap_pass_brigade; flip the params to match the prototype. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100647 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
nothing to do with FLUSH buckets. It is simply a cover function for ap_pass_brigade for use with the apr_brigade_* writing functions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100646 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100645 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 15, 2003
-
-
Andre Malo authored
apr_table_get should be more efficient nearly always. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100644 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
get a rid of static buffers and unnecessary memory operations git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100643 13f79535-47bb-0310-9956-ffa450edef68
-
Paul J. Reder authored
Update the header token parsing code to allow LWS between the token word and the ':' seperator. [PR 16520] [submitted: Kris Verbeeck <kris.verbeeck@advalvas.be> and Nicel KM <mnicel@yahoo.com>] [Reviewed: <coad@measurement-factory.com> and Paul J. Reder] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100642 13f79535-47bb-0310-9956-ffa450edef68
-
Paul J. Reder authored
Eliminate creation of a temporary table in ap_get_mime_headers_core() Submitted by: Joe Schaefer <joe+gmane@sunstarsys.com> Reviewed by: Brian Pane Backported by: Paul J. Reder git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100638 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100637 13f79535-47bb-0310-9956-ffa450edef68
-
Paul J. Reder authored
Namespace protected the table label. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100634 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
containing the .htaccess file is requested without a trailing slash. PR: 20195 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100632 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
DirectoryIndex directive, the folder icon is no longer replaced by the icon of that file. PR: 9587 Submitted by: David Shane Holden <dpejesh@yahoo.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100628 13f79535-47bb-0310-9956-ffa450edef68
-
Yoshiki Hayashi authored
Thanks Andre for catching this. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100624 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 14, 2003
-
-
Andre Malo authored
PR: 12863 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100620 13f79535-47bb-0310-9956-ffa450edef68
-
Paul J. Reder authored
Remove some extraneous code committed as part of the fix for 13946 pointed out by Andre Malo. [Paul J. Reder] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100615 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100610 13f79535-47bb-0310-9956-ffa450edef68
-
Roy T. Fielding authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100607 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
client certificate chain. PR: 21371 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100605 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
redirection target is not access protected and pass it to scripts using the REDIRECT_REMOTE_USER environment variable. PR: 10678, 11602. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100604 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
static string or something parsed from the config git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100603 13f79535-47bb-0310-9956-ffa450edef68
-
Paul J. Reder authored
Ooops, forgot the PR number for my recent mod_rewrite commit (PR #13946)... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100601 13f79535-47bb-0310-9956-ffa450edef68
-
Paul J. Reder authored
mod_rewrite: fix a problem in the proxy support of mod_rewrite. The broken code was inserting multiple "proxy:" fields in the rewritten URIs. [Submitted by: Eider Oliveira <eider@bol.com.br>] [Updated and reviewed by: Paul J. Reder] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100600 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100599 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
the REDIRECT_HANDLER environment variable. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100598 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
the external filter. PR: 20944 The missing code was identified by Andrew Ho, coded/tested by Jeff Trawick, and verified yet again by Neil Fraser. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100595 13f79535-47bb-0310-9956-ffa450edef68
-