- Aug 23, 2000
-
-
Jim Jagielski authored
just the structure or the RLIMIT_* defines. Also, we should make the API function unixd_set_rlimit() ``available'' even if it doesn't do anything. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86143 13f79535-47bb-0310-9956-ffa450edef68
-
Sascha Schumann authored
which don't handle the .PHONY target correctly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86142 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86141 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
Submitted by: Victor J. Orlikowski <v.j.orlikowski@gte.net> Reviewed by: Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86140 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
up the signature of command handlers to avoid maintainer mode warnings. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86137 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
filtering beginning to work. There is a hack that has been repeated through this patch, we morph a pipe into a socket, and put the socket into the BUFF. Everytime we do that, we are working with a pipe from a CGI, and we should be creating a pipe bucket and passing that bucket back. Because we don't actually have pipe buckets yet, we are using this hack. When we get pipe buckets, this will be fixed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86136 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 22, 2000
-
-
Jeff Trawick authored
on buff's translation by default, but mod_charset_lite (when configured to do so) turned on its own filter-based translation, resulting in gibberish. To be determined... whether or not mod_charset_lite should enable translation of text objects by default (a la 1.3)... probably... for now you have to tell mod_charset_lite to translate. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86135 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86134 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
Note that several areas have not been tested as they apply to MPMs or APR code that I can't test. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86133 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
and we can't clean config.h and then touch the file, we actually need some of the data that config.h contains. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86132 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
without this change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86131 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
stdcall. The 'split' function pointer in ap_buckets.h points to both static functions (which use C calling convention) and exported functions (which normally use stdcall). Let's settle on using the C calling convention. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86130 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86129 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
losing contexts before this fix, and if we lost enough, the server would stop responding. GetQueuedCompletionStatus can fail with ERROR_NETNAME_DELETED when a client closes its end of a connection and we try to reuse the accept socket. Really bizzare... I would have thought the AcceptEx using the recycled socket would have failed instead... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86128 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 21, 2000
-
-
Ken Coar authored
Expand a little on the description, while testing enhancements to the log_accum.pl CVSROOT script. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86127 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
Another minor cosmetic fix, committed from the httpd-docs-2.0/apidoc tree. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86126 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
Cosmetic fix, committed from the apache-2.0 tree (this will also test the CVS module association). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86125 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
errno was passed as the APR error code. In other places, 0 was passed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86124 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
Fix a typo. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86122 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86121 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86120 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 20, 2000
-
-
Jeff Trawick authored
which translation handle to use. This will allow the same filter to work for input and output. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86119 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86118 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 19, 2000
-
-
Ryan Bloom authored
mentioning that we need to review them seems like overkill. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86117 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86116 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
buckets, and alter the HEAP and MMAP buckets to use it. Change the way buckets are initialised to support changing the type of buckets in place, and use it when setting aside TRANSIENT buckets. Change the implementation of TRANSIENT buckets so that it can be mostly shared with IMMORTAL buckets, which are now implemented. Reviewed by: rbb git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86115 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86114 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86113 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86112 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
rather than a list of supposedly all of the other HTTP methods, git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86111 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
Submitted by: David Hill <ddhill@zk3.dec.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86108 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
PR: 6357 Submitted by: Mike Abbott <mja@sgi.com> Reviewed by: Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86107 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 18, 2000
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86106 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
(used only on output at the moment). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86105 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
we are now working on a7. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86102 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86100 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86099 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
The OS/390 compile options are hard-coded because we need the special DLL,EXPORTALL on *all* object files that are part of the core so that dsos can reference symbols in the core. (Of course, we use the option on more object files than that, but it doesn't seem to hurt anything.) We hard-code the enablement of DSOs on OS/390 because the library functions on OS/390 to manage explicit loading are not portable, so there seems to be no use in probing for them. Submitted by: Greg Ames git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86098 13f79535-47bb-0310-9956-ffa450edef68
-
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
-