- Aug 18, 2000
-
-
Ryan Bloom authored
modules is deprecated. Remove it from the project. Submitted by: Bill Rowe <wrowe@apache.org> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86096 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
1) don't put the trailing 0\r\n\r\n in lenstr; that buffer is already in use (pointed to by another transient bucket); using lenstr again overlays that other chunk header 2) insert the bucket with the trailing "0\r\n\r\n" *before* the eos bucket Submitted by: Jeff Trawick <trawickj@bellsouth.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86095 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 17, 2000
-
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86094 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
itself. I believe this is what was causing the module to not be able to be enabled and disabled on a per-server basis. This patch makes it use a flag git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86093 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
bug fix in chunk_filter(): it was creating the wrong-size bucket. chunking now appears to be working (without using BUFF). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86092 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86091 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
bucket brigades are sent to this filter, it inserts the chunking header at the front of the brigade. When the filter sees an EOS bucket, it adds the 0 chunking trailer. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86090 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
to the filter stack. This makes the chunking filter work. Without this, the core_filter is installed in the insert_filters hook, when we get to the ap_send_http_headers function, we insert the chunking filter, but it has been installed after the core_filter. This means the chunk_filter is never called. This reverses this. The core_filter is installed in the insert_filters hook, and we put the chunk_filter in during ap_send_http_headers. This time, the chunking filter is installed before the core_filter, and it gets called correctly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86089 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 16, 2000
-
-
Greg Stein authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86088 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86087 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
fix ap_rputc() note some problems with subrequest finalization and ap_rflush() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86086 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
missing the needed comparison on the request. this allows subrequests to insert filters properly (by stopping the scan before transitioning to the parent request's filters) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86085 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86084 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 15, 2000
-
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86082 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86081 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86080 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
trick in order to send the headers out on the sendfile call. Besides, BUFF is going away with brigades and filters... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86079 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86078 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86077 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
not necessarily a bucket brigade. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86076 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86075 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 14, 2000
-
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86074 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
Make compilable on Windows again. I'm not sure the x = { [1] = 1 } syntax is even ANSI C, but it originally compiled for me. Oh, well. I'd rather have this statically built at compile time, but I don't want to add the dependencies on the method order and its being a contiguous sequence. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86073 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
apr_null_cleanup() instead of NULL to indicate that no child cleanup is desired. (With NULL, we branch to zero.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86072 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
escape the spaces in file names. It does now. This also adds the default template for Apache to use. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86071 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
--with-maintainer-mode git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86070 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86069 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86068 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86067 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 13, 2000
-
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86066 13f79535-47bb-0310-9956-ffa450edef68
-
David Reid authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86065 13f79535-47bb-0310-9956-ffa450edef68
-
David Reid authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86064 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
basically removing functions that aren't really necessary anymore. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86063 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 12, 2000
-
-
Ryan Bloom authored
to the very bottom of the filter stack and nobody has written anything to the network, then we need to return an error. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86062 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86061 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86060 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
to add and modify data while processing a request. The docs still need to be updated, and a simple html page needs to be created explaining all of this. The only filter currently in the code is the core filter. This filter takes a bucket brigade and writes it to the network through the buff structure. In time, the buff will go away completely. More filters will need to be written. Submitted by: The Apache Community Reviewed by: The Apache Community git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86059 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
log it if it fails). Don't segfault if RewriteLock wasn't coded in the config (i.e., if rewrite_log_lock isn't set). Fix a missing error code in a call to ap_log_error(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86058 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
Allow <Limit*> to accept arbitrary extension method named instead of varfing. Nothing takes advantage of this yet; that's coming next. Also replace the shorthand Allow setup to use the new API (this is possibly a problematical change for the core default handler; no problem to back that out). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86057 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 11, 2000
-
-
Ken Coar authored
Add mnemonics for the ap_allow_methods() reset flag meanings. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86056 13f79535-47bb-0310-9956-ffa450edef68
-