- Nov 02, 2000
-
-
Greg Stein authored
Revise how Apache configs APR and allow MPMs (or other config scripts) to pass cmd line params down to APR. For the MPMs that specifically require or disallow threads, have them force APR threads on/off. Submitted by: Joe Orton <joe@light.plus.com> Reviewed by: Greg Stein git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86794 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
logresolve.c: In function `main': logresolve.c:327: warning: subscript has type `char' ab.c: In function `main': ab.c:1074: warning: subscript has type `char' ab.c:1087: warning: subscript has type `char' git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86793 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 01, 2000
-
-
Joshua Slive authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86792 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
PR: 6777 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86791 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
(currently) we can't shorten the length of such a bucket by setting e->length. (We could split and then remove the extra bucket, but this seems cleaner. We may still want to have a way to shorten a bucket, but there isn't a pressing need for that at the moment.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86790 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
in the header, but one fix at a time...) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86789 13f79535-47bb-0310-9956-ffa450edef68
-
Sascha Schumann authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86788 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
called "Using the Apache HTTP Server" for task-oriented docs. Also, remove some of the "other notes" links that are more or less obsolete. They are still available on a sub-page. This is a little fancier than the old one, which I know will annoy some people. Oh well. The design and HTML coding comes mostly from Carlos, but I messed it up and changed stuff. Blame Joshua for any errors. Submitted by: Carlos Ramirez <cramirez@gte.net>, Joshua Slive git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86787 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
timeout directly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86786 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
instead of BO_TIMEOUT. (We were actually setting a different socket option.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86785 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
for data, but not harmful for functions) old warning: "exports.c:59: warning: initialization discards `const' from pointer target type" git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86784 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86783 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
for the headers. We count the number of bytes we expect to get and only allocation that many bytes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86782 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
of bytes required for the headers for each request, and we just allocate that number of bytes plus 100 extra. The extra 100 are a fudge factor, because it is a bit difficult to compute the exact length for the basic HTTP headers like date and the status line. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86781 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
we now create a single bucket that has all of the headers and send that. One known issue is that this limits the headers to 8k, but it is a minor patch to fix that. This also stops us from exporting ap_send_header_field. This function no longer makes sense to export. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86780 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86779 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 31, 2000
-
-
Jeff Trawick authored
. use %qx format instead of %llx for 64-bit integer (apr_time_t); %llx prints as "%llx" . pass offset and length to ap_bucket_create_mmap() so that byte ranges work with mmaps (at least for a single range) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86777 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86776 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
the response when no content length is available and we can't use chunked encoding. This is going to be painful when the response body is huge, so I suspect we'll have additional criteria in the future. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86775 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86774 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86773 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
accomplished by moving suexec out of it's own file and into unixd.[ch]. The problem was that suexec.c wasn't being linked into the server unless a module was actually using ap_os_create_process. This is still not clean, but it works now. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86772 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 30, 2000
-
-
Ryan Bloom authored
forces Apache to link in all of the APR functions whether they are used by any static modules or not. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86770 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86769 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86768 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86767 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86766 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86765 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 28, 2000
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86760 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86759 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
Submitted by: erik quanstrom <quanstro@clark.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86758 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 27, 2000
-
-
Sascha Schumann authored
and thus cannot be shared by multiple build trees. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86756 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 26, 2000
-
-
Jeff Trawick authored
Submitted by: Cliff Woolley <cliffwoolley@yahoo.com> Reviewed by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86755 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86754 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86753 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
ap_send_header_field(); change terminate_header() to build the CRLF in ASCII to begin with. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86752 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
the EBCDIC support. They are noops on ASCII machines, so this type of translation doesn't have to be surrounded by #ifdef CHARSET_EBCDIC. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86751 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 25, 2000
-
-
Jeff Trawick authored
since we don't compute digests of filtered (e.g., translated) response bodies this way anymore. (Note that we don't do it at all at the present; somebody needs to write a filter to do so.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86750 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
generated output. Otherwise, it doesn't look too cool. XXX This isn't a perfect fix because this doesn't trigger us to convert from the charset of the source code to ASCII. The general solution seems to be to allow a generator to set an indicator in the r specifying that the body is coded in the implementation character set (i.e., the charset of the source code). This would get several different types of documents translated properly: mod_autoindex output, mod_status output, mod_info output, hard-coded error documents, etc. Problem reported by: Martin Kraemer git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86749 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
This can happen when the config doesn't tell us to do anything but the administrator coded us in Add{Input|Output}Filter. Instead of segfaulting, we turn into a noop. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86748 13f79535-47bb-0310-9956-ffa450edef68
-