- Jun 17, 2001
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89379 13f79535-47bb-0310-9956-ffa450edef68
-
Ben Laurie authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89377 13f79535-47bb-0310-9956-ffa450edef68
-
- Jun 16, 2001
-
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89376 13f79535-47bb-0310-9956-ffa450edef68
-
- Jun 15, 2001
-
-
Jeff Trawick authored
limit. We left ap_threads_per_child at the higher value which led to segfaults when doing certain scoreboard operations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89375 13f79535-47bb-0310-9956-ffa450edef68
-
- Jun 14, 2001
-
-
Ryan Bloom authored
implement pool-based setaside for FILE and MMAP buckets. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89370 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
. in ONE_PROCESS mode, bail out immediately for SIGHUP and SIGINT Note that if you send HUP or INT and have cgid then cgid won't go away. If you generate the interrupt signal from the httpd terminal then cgid will go away, [I guess] because SIGINT gets sent to the process group. Perhaps just_die() needs to have logic to send to other processes in the group for ONE_PROCES mode . the die_now flag should be static . please_die_gracefully() is no longer needed git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89369 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
just as for SIGTERM. If we deadlock because of some module or library issue then SIGKILL will come soon enough. Stop dorking with SIGTERM and SIGHUP in make_child(). That makes it kind of hard for the caller to set up for ONE_PROCESS mode. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89368 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89367 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
so that we write to the pod to tell the servers to go away git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89366 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89365 13f79535-47bb-0310-9956-ffa450edef68
-
- Jun 13, 2001
-
-
Greg Stein authored
This patch was submitted by Ian Holsman. Greg revised some names, applied the Apache style, and namespace-prefixed the public symbols. Minor bugfix in the use of the hook implementation macro. Submitted by: Ian Holsman <IanH@cnet.com> Reviewed by: Greg Stein git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89364 13f79535-47bb-0310-9956-ffa450edef68
-
Cliff Woolley authored
* did some code cleanups/optimizations in that function. * updated Apache's byterange filter to handle the new prototype. added error handling to the byterange filter should apr_brigade_partition() ever fail, which it never will unless somebody either removes the earlier call to apr_brigade_length() for some unknown reason or invents a new bucket type that is of a predetermined length but which cannot be split natively (or which has a split that might fail). might as well be future-proof. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89363 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
the comments that is really necessary before the setaside stuff will work properly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89362 13f79535-47bb-0310-9956-ffa450edef68
-
- Jun 12, 2001
-
-
Greg Ames authored
default_handler was using the subrequest pool for files and MMAPs, even though the associated APR structures typically live longer than the subrequest. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89354 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
on the SetEnvIf (and SetEnvIfNoCase) directive attribute field. Example: SetEnvIf ^TS* [a-z].* HAVE_TS will cause HAVE_TS to be set if any of the request headers begins with "TS" and has a value that begins with any character in the set [a-z]. [Bill Stoddard] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89353 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
presence of the bindprocessor() function, not for sys/processor.h, which exists on some systems that don't have bindprocessor() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89352 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
if we want to call bindprocessor(), we should check for bindprocessor(), not some header file (prefork and perchild to be fixed shortly) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89351 13f79535-47bb-0310-9956-ffa450edef68
-
- Jun 11, 2001
-
-
Victor J. Orlikowski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89347 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
2.2, not just 2.2. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89346 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89341 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
pod_out; after that change, all read and write syscalls on the handles failed because pod_in was only readable and pod_out was only writable we could instead reverse the order of the parameters to apr_pipe_create so that the descriptors returned by pipe() get put in the right place, but it seems better to stick with APR terminology for what is the input handle and what is the output handle git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89335 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89334 13f79535-47bb-0310-9956-ffa450edef68
-
Cliff Woolley authored
can only happen if n<=1 (ie, a bad parameter value), so I figure APR_EINVAL is the correct default value. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89333 13f79535-47bb-0310-9956-ffa450edef68
-
- Jun 10, 2001
-
-
Bill Stoddard authored
APR. Shuld consider adding apr_file_getline() to APR. Should also consider changing apr_file_getc() to return characters rather than apr_status. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89331 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Whoops, wanted the original unix language, not win32's, for both git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89330 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Bring win32 and the rest of the world into sync, or closer into sync. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89329 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Two duplicate working cvs copies down, several to go. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89328 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Now that it works, adjust the conf appropriately. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89327 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Was certain I had committed this. Position the scoreboard members such that the size and members can be derrived by the most stable elements, followed by derived elements. [Harrie Hazewinkel] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89326 13f79535-47bb-0310-9956-ffa450edef68
-
- Jun 09, 2001
-
-
Bill Stoddard authored
For example: SetEnvIf ^TS* ^[a-z].* HAVE_TS will cause HAVE_TS to be set if a header beginning with TS appears in the request and the value of that header starts with [a-z] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89325 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
AP[RU]_DECLARE_DATA. If this is incorrect, please yell. However, the vast majority of the code follows the convention documented in this patch. If this is in error, I will gladly back it out. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89324 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
(Only limitations - mod_proxy and mod_dav, soon to be corrected). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89322 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89321 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89320 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89319 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89318 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89317 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
httpd.exp should now be generated automatically. Any missing symbols are now the fault of awk scripts. Or rather, their authors. :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89316 13f79535-47bb-0310-9956-ffa450edef68
-
Victor J. Orlikowski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89315 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
Submitted by: Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89314 13f79535-47bb-0310-9956-ffa450edef68
-