- Jul 26, 2001
-
-
David Reid authored
to allow the beos mpm to kill off it's workers and respawn them we'll now have them ask for a restart when exiting. This was suggested by Bruno G Albuquerque <bga@bug-br.org.br>. Submitted by: Bruno G Albuquerque <bga@bug-br.org.br> Reviewed by: David Reid <dreid@apache.org> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89736 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
apr_thread_t * to apr_thread_join(). Now we clear the array of apr_thread_t * initially so we can track which threads we actually created. Other changes: don't clobber storage by passing bogus array entry as 1st parameter to apr_thread_create() to create the start_threads() thread join up with the start_threads() thread at termination so that it is cleaned up and so that no worker threads are still being created git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89735 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Update make file for win32 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89733 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Something that needs looking at, all our long (unsigned long) body lengths need to become apr_off_t. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89732 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
That's it. There are no further emits for signedness or size conversion in MSVC 5.x. Enough for 2.0.22, I'll revisit under -w4 (msvc's -wall) and attack the other modules in 2.0.23-dev. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89731 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Terniaries are broken under MSVC, they never did resolve how to resolve the type of an obvious conversion like this one. Even casting the const to an apr_port_t doesn't solve it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89730 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Flush the off_t compiler emits from mod_isapi git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89729 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This patch should address input buffering, requesting only as much from the client as the ap_get_client_block() buffer is prepared to accept. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89728 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Change the length of the content args to apr_off_t identifiers, and fix mod_negotation to treat a size of -1 and indeterminate, instead of 0. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89727 13f79535-47bb-0310-9956-ffa450edef68
-
Cliff Woolley authored
addition to the key itself as suggested by Dw git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89720 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 25, 2001
-
-
William A. Rowe Jr authored
Cliff's most sane advise :-) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89719 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Reviewing my own commit logs ... dang did this look silly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89718 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Safe casts - we are assured that len_read is positive, but it must be stored as an int to initially check the ap_get_client_block() result. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89717 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Same fix for largefile support as core.c git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89716 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
More signedness fixes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89715 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This same patch is needed in mod_asis and others, I'm testing the waters for this solution. I'm easily convinced to choose AP_MAX_SENDFILE based on any reasonable argument, provided it's smaller than 2^30 :-) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89714 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Change over to apr_strfsize() for apr_off_t file size formatting. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89713 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Some cast magic for intentional float/int transformations, but I have no idea what exactly this computation was trying to accomplish... req_time = (long)(((ws_record.stop_time - ws_record.start_time) * 1000) + ((ws_record.stop_time - ws_record.start_time) / 1000)); git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89712 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Some cast magic for intentional float/int transformations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89711 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
the number of children we're about to spawn git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89710 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89709 13f79535-47bb-0310-9956-ffa450edef68
-
Cliff Woolley authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89708 13f79535-47bb-0310-9956-ffa450edef68
-
Ralf S. Engelschall authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89705 13f79535-47bb-0310-9956-ffa450edef68
-
Chuck Murcko authored
Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89704 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89698 13f79535-47bb-0310-9956-ffa450edef68
-
David Reid authored
perl and other CGI's that rely on .so's for their operation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89697 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 24, 2001
-
-
Cliff Woolley authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89687 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Ames authored
This includes two changes to APR: * new functions apr_itoa, apr_ltoa, and apr_off_t_toa that provide itoa-type functionality based on pools * Inline code in inet_ntop4 to replace sprintf for converting binary IP addresses into dotted-decimal format and two changes to Apache: * use the apr_itoa functions in setting the content length, in place of apr_psprintf * use the apr_itoa functions to replace frequent uses of 'sprintf("%d",...)' in mod_log_config. Submitted by: Brian Pane Reviewed by: Dean Gaudet, Greg Ames git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89686 13f79535-47bb-0310-9956-ffa450edef68
-
Chuck Murcko authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89685 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89684 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Changes to respect the new apr bucket and brigade length types (either apr_size_t for bucket lengths, or apr_off_t for aggregate brigade lengths.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89683 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
It's a nit, but since I'm searching for "win32" it ought to be there :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89682 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89681 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89680 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
header_filter will stay installed in the filter chain when processing HEAD requests to intercept and discard content bodys sent by poorly written handlers. This work also points out the need for an optimization in the content_length filter to not split the brigade if the next bucket in the brigade is an EOS. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89679 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
where HEAD response headers were being repeated twice for files greater than 32K bytes (4*AP_MIN_BYTES_TO_WRITE). This problem in the http_header filter was exposed by the recent rewrite of the content_length filter. [Taketo Kabe, Bill Stoddard] PR: 8037 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89676 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Change the worker_function implementations to accept both parameters, the apr private data (apr_thread_t*) and the application private data (void*), for the last update to APR. Submitted by: Aaron Bannert <aaron@ebuilt.com> Reviewed by: Will Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89672 13f79535-47bb-0310-9956-ffa450edef68
-
Cliff Woolley authored
ap_input_mode_t. It's now safe(r) to cast from ap_read_type_e to ap_input_mode_t. Submitted by: Justin Erenkrantz, Sander Striker git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89671 13f79535-47bb-0310-9956-ffa450edef68
-
- Jul 23, 2001
-
-
William A. Rowe Jr authored
The original answer was evil, return NULL if the file name has no path! git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89666 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Some odd XXX fixups that are closed (or unneeded) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89665 13f79535-47bb-0310-9956-ffa450edef68
-